Files
tefter/docker-compose.yml
Senad bf8e98dd49
Some checks failed
ci / test (push) Has been cancelled
ci / release (push) Has been cancelled
Make GOPROXY a build arg (proxy.golang.org is blocked on some networks)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 12:39:25 +02:00

22 lines
504 B
YAML

services:
tefter:
build:
context: .
args:
VERSION: ${TEFTER_VERSION:-dev}
GOPROXY: ${GOPROXY:-https://proxy.golang.org,direct}
environment:
TEFTER_DB: /data/tefter.db
volumes:
# ":Z" relabels for SELinux (required on the podman/SELinux server; a
# harmless no-op on non-SELinux Docker hosts).
- data:/data:Z
security_opt:
- label:disable
ports:
- "${WEB_PORT:-8420}:8420"
restart: unless-stopped
volumes:
data: