This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Traefik 2 - Reverse Proxy | |
traefik: | |
container_name: traefik | |
image: traefik:chevrotin # the chevrotin tag refers to v2.2.x | |
restart: unless-stopped | |
command: # CLI arguments | |
- --global.checkNewVersion=true | |
- --global.sendAnonymousUsage=true | |
- --entryPoints.http.address=:80 | |
- --entryPoints.https.address=:443 |