Remove unecessary quoting

This commit is contained in:
Luke Murphy
2020-04-25 23:22:25 +02:00
parent 813750df93
commit 9368deb85f

View File

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