Files
docker-kms-gui/compose.yaml

26 lines
479 B
YAML

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