20 lines
542 B
YAML
20 lines
542 B
YAML
# compose-updater.yml
|
|
# https://git.bizmark.cloud/marc/bizMark.git
|
|
services:
|
|
tugtainer:
|
|
image: quenary/tugtainer:latest
|
|
container_name: tugtainer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9412:80"
|
|
environment:
|
|
TZ: "Europe/Zurich"
|
|
AGENT_ENABLED: "true"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- /home/marc/tugtainer/data:/tugtainer
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -q --spider http://localhost:80 || exit 1"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3 |