Files
docker-kms-gui/compose.yaml
2025-05-05 10:57:38 +02:00

28 lines
477 B
YAML

name: "kms"
services:
app:
image: "11notes/kms:1.0.0"
environment:
TZ: "Europe/Zurich"
volumes:
- "var:/kms/var"
ports:
- "1688:1688/tcp"
restart: "always"
gui:
image: "11notes/kms-gui:1.0.0"
depends_on:
app:
condition: "service_healthy"
restart: true
environment:
TZ: "Europe/Zurich"
volumes:
- "var:/kms/var"
ports:
- "3000:3000/tcp"
restart: "always"
volumes:
var: