version: '3.5' volumes: wordpress: networks: traefik: name: traefik services: traefik: image: traefik:${TRAEFIK_VERSION:-latest} restart: always command: - --api.dashboard=${TRAEFIK_DASHBOARD:-true} - --api.debug=${TRAEFIK_DEBUG:-false} - --providers.docker=true - --providers.docker.exposedbydefault=${TRAEFIK_EXPOSED_DEFAULT:-false} - --entrypoints.web.address=:80 - --entrypoints.web.http.redirections.entrypoint.to=websecure - --entrypoints.web.http.redirections.entrypoint.scheme=https - --entrypoints.web.http.redirections.entrypoint.permanent=true - --entrypoints.websecure.address=:443 - --entrypoints.local.address=:8443 ports: - 80:80 - 443:443 - "127.0.0.1:8443:8443" volumes: - /var/run/docker.sock:/var/run/docker.sock labels: traefik.http.routers.api.rule: Host(`${TRAEFIK_DOMAIN:-traefik.local.freeitathens.org}`) traefik.http.routers.api.entrypoints: local traefik.http.routers.api.service: api@internal traefik.http.routers.api.tls: true traefik.enable: true networks: - traefik wordpress: image: wordpress:${WORDPRESS_VERSION:-latest} restart: always environment: WORDPRESS_DB_HOST: ${WORDPRESS_DB_HOST:-host.docker.internal} WORDPRESS_DB_NAME: ${WORDPRESS_DB_NAME-wordpress} WORDPRESS_DB_USER: ${WORDPRESS_DB_USER:-wordpress} WORDPRESS_DB_PASSWORD: ${WORDPRESS_DB_PASSWORD} labels: traefik.http.routers.wordpress.rule: Host(`${WORDPRESS_DOMAIN:-www.local.freeitathens.org}`) traefik.http.routers.wordpress.entrypoints: websecure traefik.http.routers.wordpress.tls.certresolver: letsencrypt traefik.docker.network: traefik traefik.enable: true volumes: - wordpress:/var/www/html extra_hosts: - host.docker.internal:host-gateway