Compare commits

2 Commits

Author SHA1 Message Date
kris d7197ddd5b Use the fully qualified image registry name 2025-11-15 11:07:39 -05:00
kris 0c9d78b676 Support Podman via configurable socket path 2025-11-15 10:47:12 -05:00
3 changed files with 5 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
.env
+2 -2
View File
@@ -7,7 +7,7 @@ networks:
services:
traefik:
image: "${IMAGE:-traefik}:${VERSION:?}"
image: "${IMAGE:-docker.io/traefik}:${VERSION:?}"
container_name: "${NAME:-traefik}"
command:
- --providers.docker=true
@@ -35,5 +35,5 @@ services:
networks:
- traefik
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock
- "traefik:/etc/traefik"
+2 -2
View File
@@ -7,7 +7,7 @@ networks:
services:
traefik:
image: "${IMAGE:-traefik}:${VERSION:?}"
image: "${IMAGE:-docker.io/traefik}:${VERSION:?}"
container_name: "${NAME:-traefik}"
command:
- --providers.docker=true
@@ -30,5 +30,5 @@ services:
networks:
- traefik
volumes:
- ${SOCKET:-/run/user/$UID/podman/podman.sock}:/var/run/docker.sock
- ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock
- "traefik:/etc/traefik"