2023-05-10 12:54:05 +02:00
version : "3.7"
services :
traefik :
container_name : bridgehead-traefik
image : docker.verbis.dkfz.de/cache/traefik:latest
command :
- --entrypoints.web.address=:80
- --entrypoints.websecure.address=:443
- --providers.docker=true
- --providers.docker.exposedbydefault=false
- --providers.file.directory=/configuration/
- --api.dashboard=true
- --accesslog=true
- --entrypoints.web.http.redirections.entrypoint.to=websecure
- --entrypoints.web.http.redirections.entrypoint.scheme=https
labels :
- "traefik.enable=true"
- "traefik.http.routers.dashboard.rule=PathPrefix(`/api`) || PathPrefix(`/dashboard`)"
- "traefik.http.routers.dashboard.entrypoints=websecure"
- "traefik.http.routers.dashboard.service=api@internal"
- "traefik.http.routers.dashboard.tls=true"
- "traefik.http.routers.dashboard.middlewares=auth"
2023-07-27 15:38:29 +02:00
- "traefik.http.middlewares.auth.basicauth.users=${LDM_AUTH}"
2023-05-10 12:54:05 +02:00
ports :
- 80 : 80
- 443 : 443
volumes :
- /etc/bridgehead/traefik-tls:/certs:ro
- ../lib/traefik-configuration/:/configuration:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
forward_proxy :
container_name : bridgehead-forward-proxy
image : docker.verbis.dkfz.de/cache/samply/bridgehead-forward-proxy:latest
environment :
HTTPS_PROXY : ${HTTPS_PROXY_URL}
2023-10-25 15:22:08 +02:00
HTTPS_PROXY_USERNAME : ${HTTPS_PROXY_USERNAME}
HTTPS_PROXY_PASSWORD : ${HTTPS_PROXY_PASSWORD}
2023-08-04 17:20:46 +02:00
tmpfs :
- /var/log/squid
- /var/spool/squid
2023-05-10 12:54:05 +02:00
volumes :
- /etc/bridgehead/trusted-ca-certs:/docker/custom-certs/:ro
2024-02-15 14:13:52 +01:00
healthcheck :
2024-03-18 12:45:46 +01:00
# Wait 1s before marking this service healthy. Required for the oauth2-proxy to talk to the OIDC provider on startup which will fail if the forward proxy is not started yet.
2024-02-15 14:13:52 +01:00
test : [ "CMD" , "sleep" , "1" ]
2023-05-10 12:54:05 +02:00
2024-05-13 15:56:58 +02:00
# landing:
# container_name: bridgehead-landingpage
# image: docker.verbis.dkfz.de/cache/samply/bridgehead-landingpage:main
# labels:
# - "traefik.enable=true"
# - "traefik.http.routers.landing.rule=PathPrefix(`/`)"
# - "traefik.http.services.landing.loadbalancer.server.port=80"
# - "traefik.http.routers.landing.tls=true"
# environment:
# HOST: ${HOST}
# PROJECT: ${PROJECT}
# SITE_NAME: ${SITE_NAME}