michael-docker/traefik/docker-compose.yaml

16 lines
378 B
YAML
Raw Permalink Normal View History

2020-05-27 10:42:54 +00:00
version: "3.3"
services:
traefik:
image: "traefik:v2.0.0"
restart: unless-stopped
command:
2020-05-27 11:58:29 +00:00
- --entrypoints.web.address=192.168.0.97:80
2020-05-27 10:42:54 +00:00
- --providers.docker=true
ports:
- "192.168.0.97:80:80"
- "192.168.0.97:8080:8080"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "./traefik.yml:/etc/traefik/traefik.yml"