Remove unecessary quoting

This commit is contained in:
Luke Murphy 2020-04-25 23:22:25 +02:00
parent 813750df93
commit 9368deb85f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 5 deletions

View File

@ -4,16 +4,16 @@ version: "3.3"
services:
traefik:
image: "traefik:v2.2"
restart: "always"
container_name: "traefik"
restart: always
container_name: traefik
ports:
- "80:80"
- "443:443"
- "8080:8080"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "./letsencrypt:/etc/letsencrypt"
- "./traefik.yml:/etc/traefik/traefik.yml"
- /var/run/docker.sock:/var/run/docker.sock
- ./letsencrypt:/etc/letsencrypt
- ./traefik.yml:/etc/traefik/traefik.yml
networks:
- proxy
deploy: