forked from codecoradev/uteke
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (24 loc) · 808 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
25 lines (24 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Uteke Docker Compose — default: localhost only, no auth
# Images available: ghcr.io/codecoradev/uteke:latest (GHCR) or codecoradev/uteke:latest (Docker Hub)
# For network access, uncomment UTEKE_AUTH_TOKEN below.
services:
uteke:
image: ghcr.io/codecoradev/uteke:latest
container_name: uteke
ports:
- "127.0.0.1:${UTEKE_PORT:-8767}:8767"
volumes:
- uteke-data:/data
environment:
# Auth (optional — set UTEKE_AUTH_TOKEN env var to enable)
# - UTEKE_AUTH_TOKEN
restart: unless-stopped
healthcheck:
# curl is pre-installed in the uteke Docker image (Dockerfile runtime stage)
test: ["CMD", "curl", "-f", "http://localhost:8767/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
volumes:
uteke-data: