forked from coop-cloud/traefik
62 lines
1.9 KiB
YAML
62 lines
1.9 KiB
YAML
version: "3.8"
|
|
services:
|
|
app:
|
|
image: "traefik:v2.4.8"
|
|
# Note(decentral1se): *please do not* add any additional ports here.
|
|
# Doing so could break new installs with port conflicts. Please use
|
|
# the usual `compose.$app.yml` approach for any additional ports
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
- "letsencrypt:/etc/letsencrypt"
|
|
configs:
|
|
- source: traefik_yml
|
|
target: /etc/traefik/traefik.yml
|
|
- source: file_provider_yml
|
|
target: /etc/traefik/file-provider.yml
|
|
networks:
|
|
- proxy
|
|
environment:
|
|
- DASHBOARD_ENABLED
|
|
- FOODSOFT_SMTP_ENABLED
|
|
- GITEA_SSH_ENABLED
|
|
- LOG_LEVEL
|
|
- PEERTUBE_RTMP_ENABLED
|
|
- SMTP_ENABLED
|
|
healthcheck:
|
|
test: ["CMD", "traefik", "healthcheck"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 10
|
|
start_period: 1m
|
|
deploy:
|
|
update_config:
|
|
failure_action: rollback
|
|
order: start-first
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.services.traefik.loadbalancer.server.port=web"
|
|
- "traefik.http.routers.traefik.rule=Host(`${DOMAIN}`)"
|
|
- "traefik.http.routers.traefik.entrypoints=web-secure"
|
|
- "traefik.http.routers.traefik.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
|
- "traefik.http.routers.traefik.tls.options=default@file"
|
|
- "traefik.http.routers.traefik.service=api@internal"
|
|
- "traefik.http.routers.traefik.middlewares=security@file"
|
|
- coop-cloud.${STACK_NAME}.app.version=v2.4.8-d7d63b0d
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
configs:
|
|
traefik_yml:
|
|
name: ${STACK_NAME}_traefik_yml_${TRAEFIK_YML_VERSION}
|
|
file: traefik.yml.tmpl
|
|
template_driver: golang
|
|
file_provider_yml:
|
|
name: ${STACK_NAME}_file_provider_yml_${FILE_PROVIDER_YML_VERSION}
|
|
file: file-provider.yml.tmpl
|
|
template_driver: golang
|
|
volumes:
|
|
letsencrypt:
|