feat(oicd_provider): added oicd provider rauthy
This commit is contained in:
parent
380ee9c5d7
commit
bbb5fa0c69
1 changed files with 38 additions and 2 deletions
|
|
@ -1,3 +1,10 @@
|
||||||
|
version: "3.5"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
local:
|
||||||
|
rauthy-test:
|
||||||
|
driver: bridge
|
||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres:17.5-alpine
|
image: postgres:17.5-alpine
|
||||||
|
|
@ -16,8 +23,37 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- local
|
- local
|
||||||
|
|
||||||
networks:
|
mailcrab:
|
||||||
local:
|
image: marlonb/mailcrab:latest
|
||||||
|
ports:
|
||||||
|
- "1080:1080"
|
||||||
|
networks:
|
||||||
|
- rauthy-test
|
||||||
|
|
||||||
|
|
||||||
|
rauthy:
|
||||||
|
container_name: rauthy-test
|
||||||
|
image: ghcr.io/sebadob/rauthy:latest
|
||||||
|
environment:
|
||||||
|
- LOCAL_TEST=true
|
||||||
|
- SMTP_URL=mailcrab
|
||||||
|
- SMTP_PORT=1025
|
||||||
|
- SMTP_DANGER_INSECURE=true
|
||||||
|
- BOOTSTRAP_ADMIN_PASSWORD_PLAIN=RauthyTest12345
|
||||||
|
#- HIQLITE=false
|
||||||
|
#- PG_HOST=db
|
||||||
|
#- PG_PORT=5432
|
||||||
|
#- PG_USER=postgres
|
||||||
|
#- PG_PASSWORD=postgres
|
||||||
|
#- PG_DB_NAME=mv_dev
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
depends_on:
|
||||||
|
- mailcrab
|
||||||
|
- db
|
||||||
|
networks:
|
||||||
|
- rauthy-test
|
||||||
|
- local
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres-data:
|
postgres-data:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue