Created
August 23, 2020 12:55
-
-
Save sujaypillai/8947d8baa3663b9da50e15f394efee6e to your computer and use it in GitHub Desktop.
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
version: '3.7' | |
services: | |
traefik: | |
image: traefik:1.7.13 | |
ports: | |
- target: 80 | |
published: 80 | |
mode: host | |
- target: 443 | |
published: 443 | |
mode: host | |
command: > | |
--api | |
--acme | |
--acme.storage=/certs/acme.json | |
--acme.entryPoint=https | |
--acme.httpChallenge.entryPoint=http | |
--acme.onHostRule=true | |
--acme.onDemand=false | |
--acme.acmelogging=true | |
--acme.email=${EMAIL:-root@localhost} | |
--docker | |
--docker.swarmMode | |
--docker.domain=${DOMAIN:-localhost} | |
--docker.watch | |
--defaultentrypoints=http,https | |
--entrypoints='Name:http Address::80' | |
--entrypoints='Name:https Address::443 TLS' | |
--logLevel=INFO | |
--accessLog | |
--metrics | |
--metrics.prometheus | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
- traefik_certs:/certs | |
configs: | |
- source: traefik_htpasswd | |
target: /etc/htpasswd | |
networks: | |
- public | |
deploy: | |
mode: replicated | |
replicas: 1 | |
placement: | |
constraints: | |
- node.role == manager | |
update_config: | |
parallelism: 1 | |
delay: 10s | |
restart_policy: | |
condition: on-failure | |
labels: | |
- "traefik.docker.network=public" | |
- "traefik.port=8080" | |
- "traefik.backend=traefik" | |
- "traefik.enable=true" | |
- "traefik.frontend.rule=Host:traefik.${DOMAIN:-localhost}" | |
- "traefik.frontend.auth.basic.usersFile=/etc/htpasswd" | |
- "traefik.frontend.headers.SSLRedirect=true" | |
- "traefik.frontend.entryPoints=http,https" | |
configs: | |
traefik_htpasswd: | |
file: ./htpasswd | |
networks: | |
public: | |
driver: overlay | |
name: public | |
volumes: | |
traefik_certs: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment