From 51ea9eacbcff6bf0e5df5ea3d90fc077804d08bc Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Mon, 8 Dec 2025 19:18:53 +0000 Subject: [PATCH] Initiale Version --- compose_tugtainer.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 compose_tugtainer.yaml 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