mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-08 09:24:04 +01:00
15 lines
324 B
YAML
15 lines
324 B
YAML
version: '3'
|
|
|
|
services:
|
|
traefik:
|
|
image: "traefik:v2.5"
|
|
container_name: "traefik"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
# (Optional) Expose Dashboard
|
|
- "8080:8080" # Don't do this in production!
|
|
volumes:
|
|
- /etc/traefik:/etc/traefik
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|