This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
traefik-development/docker-compose.yaml

19 lines
371 B
YAML
Raw Normal View History

2021-02-03 16:10:13 +00:00
services:
reverse-proxy:
2022-03-05 10:49:07 +00:00
image: "traefik:v2.5"
2021-02-03 16:10:13 +00:00
ports:
- "80:80"
- "8080:8080"
2022-03-05 08:00:32 +00:00
restart: unless-stopped
2021-02-03 16:10:13 +00:00
volumes:
2022-03-05 10:49:07 +00:00
- "./traefik.yml:/etc/traefik/traefik.yml"
2021-02-03 16:10:13 +00:00
- "/var/run/docker.sock:/var/run/docker.sock:ro"
2022-03-05 10:49:07 +00:00
labels:
- "traefik.enable=false"
2021-02-03 16:10:13 +00:00
networks:
- traefik_proxy
2022-03-05 08:00:58 +00:00
networks:
traefik_proxy:
external: true