Compare commits

..

2 Commits

3 changed files with 5 additions and 4 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

View File

@@ -7,7 +7,7 @@ networks:
services: services:
traefik: traefik:
image: "${IMAGE:-traefik}:${VERSION:?}" image: "${IMAGE:-docker.io/traefik}:${VERSION:?}"
container_name: "${NAME:-traefik}" container_name: "${NAME:-traefik}"
command: command:
- --providers.docker=true - --providers.docker=true
@@ -35,5 +35,5 @@ services:
networks: networks:
- traefik - traefik
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock
- "traefik:/etc/traefik" - "traefik:/etc/traefik"

View File

@@ -7,7 +7,7 @@ networks:
services: services:
traefik: traefik:
image: "${IMAGE:-traefik}:${VERSION:?}" image: "${IMAGE:-docker.io/traefik}:${VERSION:?}"
container_name: "${NAME:-traefik}" container_name: "${NAME:-traefik}"
command: command:
- --providers.docker=true - --providers.docker=true
@@ -30,5 +30,5 @@ services:
networks: networks:
- traefik - traefik
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - ${SOCKET:-/var/run/docker.sock}:/var/run/docker.sock
- "traefik:/etc/traefik" - "traefik:/etc/traefik"