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/compose.yaml

23 lines
560 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:
- "443:443"
2021-02-03 16:10:13 +00:00
- "80:80"
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"
- ./certs:/etc/certs:ro
- ./config/dynamic.yml:/etc/traefik/dynamic.yml:ro
- ./config/static.yml:/etc/traefik/traefik.yml:ro
security_opt:
- no-new-privileges:true
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