oc-deploy/vanilla/traefik-dev-reverse/docker-compose.yml

13 lines
333 B
YAML
Raw Normal View History

2025-03-06 09:34:04 +01:00
version: '3.8'
services:
traefik:
image: traefik:v3.0
container_name: traefik
restart: always
ports:
- "8000:8000" # Expose Traefik on port 8000
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "./traefik.yml:/etc/traefik/traefik.yml"
- "./dynamic.yml:/etc/traefik/dynamic.yml"