docker-deploy/compose.yaml
2025-04-06 03:22:41 +02:00

19 lines
No EOL
451 B
YAML

services:
traefik:
image: traefik:latest
container_name: traefik
command:
- --api.insecure=true
- --api.dashboard=true
- --log.level=DEBUG
- --providers.docker=true
- --entrypoints.web.address=:80
# labels:
# - traefik.docker.network=docker_external
restart: always
ports:
- 80:80
- 8080:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- .:/prod:ro