mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
eec6424bc9
* [DEV] Debug authelia when running a suite. This runs dlv debugger within authelia backend container so that an IDE can remote debug the application using port 2345. * Apply suggestions from code review Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
version: '3'
|
|
services:
|
|
authelia-backend:
|
|
build:
|
|
context: example/compose/authelia
|
|
dockerfile: Dockerfile.backend
|
|
args:
|
|
USER_ID: ${USER_ID}
|
|
GROUP_ID: ${GROUP_ID}
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
- apparmor:unconfined
|
|
command: /resources/entrypoint-backend.sh
|
|
working_dir: /app
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
volumes:
|
|
- './example/compose/authelia/resources/:/resources'
|
|
- '../..:/app'
|
|
- '${GOPATH}:/go'
|
|
labels:
|
|
# Traefik 1.x
|
|
- 'traefik.frontend.rule=Host:login.example.com;PathPrefix:/api'
|
|
- 'traefik.protocol=https'
|
|
# Traefik 2.x
|
|
- 'traefik.http.routers.authelia_backend.rule=Host(`login.example.com`) && PathPrefix(`/api`) || Host(`login.example.com`) && PathPrefix(`${PathPrefix}/api`)'
|
|
- 'traefik.http.routers.authelia_backend.entrypoints=https'
|
|
- 'traefik.http.routers.authelia_backend.tls=true'
|
|
- 'traefik.http.services.authelia_backend.loadbalancer.server.scheme=https'
|
|
environment:
|
|
- ENVIRONMENT=dev
|
|
networks:
|
|
authelianet:
|
|
ipv4_address: 192.168.240.50
|