diff --git a/compose_tugtainer.yaml b/compose_tugtainer.yaml index e414089..23037e8 100644 --- a/compose_tugtainer.yaml +++ b/compose_tugtainer.yaml @@ -2,19 +2,19 @@ version: "3.9" services: tugtainer: - image: ghcr.io/quenary/tugtainer:latest + image: quenary/tugtainer:latest container_name: tugtainer restart: unless-stopped ports: - "9412:80" environment: TZ: Europe/Zurich - AGENT_URL: http://tugtainer-agent:8001 AGENT_SECRET: "A6sW9mP2vQk7Lx4Nf8Rb1HtY5Zj3Ec0DuVpGmK9XnJq7" - depends_on: - - tugtainer-agent + AGENT_URL: http://tugtainer-agent:8001 volumes: - /opt/tugtainer/data:/tugtainer + depends_on: + - tugtainer-agent tugtainer-agent: image: ghcr.io/quenary/tugtainer-agent:latest @@ -23,5 +23,6 @@ services: environment: TZ: Europe/Zurich AGENT_SECRET: "A6sW9mP2vQk7Lx4Nf8Rb1HtY5Zj3Ec0DuVpGmK9XnJq7" + DOCKER_HOST: unix:///var/run/docker.sock volumes: - - /var/run/docker.sock:/var/run/docker.sock:ro \ No newline at end of file + - /var/run/docker.sock:/var/run/docker.sock \ No newline at end of file