| 123456789101112131415161718192021222324 |
- ---
- services:
- traefik:
- image: docker.io/library/traefik:v3.5.3
- container_name: traefik
- ports:
- - 80:80
- - 443:443
- # --> (Optional) Enable Dashboard, don't do in production
- # - 8080:8080
- # <--
- volumes:
- - /run/docker.sock:/run/docker.sock:ro
- - ./config/:/etc/traefik/:ro
- - ./certs/:/var/traefik/certs/:rw
- environment:
- - CF_DNS_API_TOKEN=your-cloudflare-api-token # <-- Change this to your Cloudflare API Token
- networks:
- - frontend
- restart: unless-stopped
- networks:
- frontend:
- external: true # <-- (Optional) Change this to false if you want to create a new network
|