mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-18 11:30:58 +01:00
13 lines
326 B
YAML
13 lines
326 B
YAML
---
|
|
services:
|
|
traefik:
|
|
image: traefik:v2.5
|
|
container_name: traefik
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
# - 8080:8080 # (optional) expose the dashboard !don't use in production!
|
|
volumes:
|
|
- /etc/traefik:/etc/traefik
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
restart: unless-stopped |