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
2022-03-05 10:49:07 +00:00

19 lines
371 B
YAML

services:
reverse-proxy:
image: "traefik:v2.5"
ports:
- "80:80"
- "8080:8080"
restart: unless-stopped
volumes:
- "./traefik.yml:/etc/traefik/traefik.yml"
- "/var/run/docker.sock:/var/run/docker.sock:ro"
labels:
- "traefik.enable=false"
networks:
- traefik_proxy
networks:
traefik_proxy:
external: true