diff --git a/compose_tugtainer.yaml b/compose_tugtainer.yaml new file mode 100644 index 0000000..f86b65f --- /dev/null +++ b/compose_tugtainer.yaml @@ -0,0 +1,17 @@ +version: "3.9" + +services: + tugtainer: + image: ghcr.io/dbtechlabs/tugtainer:latest + container_name: tugtainer + restart: unless-stopped + ports: + - "8282:8282" # Web-UI Port + environment: + TZ: "Europe/Zurich" + volumes: + - /var/run/docker.sock:/var/run/docker.sock # Zugriff auf Docker + - tugtainer_data:/config # Persistente Konfiguration + +volumes: + tugtainer_data: \ No newline at end of file