From 409ef3889d3a4c5d1d2ab247364bf4632bdc9738 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Tue, 24 Mar 2026 19:22:05 +0000 Subject: [PATCH] Initiale Version --- compose-updater.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 compose-updater.yml diff --git a/compose-updater.yml b/compose-updater.yml new file mode 100644 index 0000000..3caf416 --- /dev/null +++ b/compose-updater.yml @@ -0,0 +1,20 @@ +# 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 + - /opt/tugtainer/data:/tugtainer + healthcheck: + test: ["CMD-SHELL", "wget -q --spider http://localhost:80 || exit 1"] + interval: 30s + timeout: 5s + retries: 3 \ No newline at end of file