authelia/internal/suites/example/compose/authelia/docker-compose.frontend.dev...

27 lines
848 B
YAML
Raw Normal View History

version: '3'
services:
authelia-frontend:
build:
context: example/compose/authelia
dockerfile: Dockerfile.frontend
2019-11-30 16:49:52 +00:00
args:
USER_ID: ${USER_ID}
GROUP_ID: ${GROUP_ID}
command: '/resources/entrypoint-frontend.sh'
working_dir: /app
stdin_open: true
volumes:
- './example/compose/authelia/resources/:/resources'
- '../../web:/app'
labels:
# Traefik 1.x
- 'traefik.frontend.rule=Host:login.example.com'
# Traefik 2.x
- 'traefik.http.routers.authelia_frontend.rule=Host(`login.example.com`) || Host(`login.example.com`) && PathPrefix(`${PathPrefix}`)'
- 'traefik.http.routers.authelia_frontend.entrypoints=https'
- 'traefik.http.routers.authelia_frontend.tls=true'
environment:
- PUBLIC_URL=${PathPrefix}
networks:
- authelianet