Marc Cataford
980aa2a8ba
* feat: forwardauth + oauth implementation * build: ignore env dotfiles * infra: local dynamic config, add service and forwardauth, remove unneeded port expose * fix: routing on callback, extraneous COPY calls * infra: auth service config * chore: remove legacy monolith auth * infra: ensure that auth container restarts always
18 lines
239 B
YAML
18 lines
239 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
auth-service:
|
|
restart: always
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- ./config.json:/app/config.json
|
|
|
|
networks:
|
|
default:
|
|
name: web
|
|
external: true
|
|
|