19 lines
523 B
YAML
19 lines
523 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
traefik:
|
|
container_name: traefik
|
|
# DO NOT UPGRADE
|
|
# SEE THIS BEFORE AND DISCUSS : https://team.picasoft.net/picasoft/pl/66aorsxhtffrjytyhnecn436wa
|
|
image: traefik:1.6.6
|
|
ports:
|
|
- "80:80"
|
|
# Uncomment to expose the web interface. Warning : do not use without setting a password in traefik.toml
|
|
#- "8080:8080"
|
|
- "443:443"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./traefik.toml:/traefik.toml
|
|
- /DATA/docker/traefik/certs:/certs
|
|
restart: always
|