mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-29 03:33:28 +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
|