forked from data.coop/membersystem
Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
Víðir Valberg Guðmundsson | a9a88c9290 |
|
@ -14,6 +14,7 @@ services:
|
|||
- ./:/app/
|
||||
depends_on:
|
||||
- postgres
|
||||
- keycloak
|
||||
env_file:
|
||||
- env
|
||||
|
||||
|
@ -26,5 +27,25 @@ services:
|
|||
env_file:
|
||||
- env
|
||||
|
||||
keycloak_db:
|
||||
image: postgres:13-alpine
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data/
|
||||
env_file:
|
||||
- env
|
||||
|
||||
keycloak:
|
||||
image: "quay.io/keycloak/keycloak:20.0"
|
||||
restart: "unless-stopped"
|
||||
command:
|
||||
- "start-dev"
|
||||
- "--db=postgres"
|
||||
- "--db-url=jdbc:postgresql://keycloak_db:5432/postgres"
|
||||
- "--db-username=postgres"
|
||||
- "--db-password=postgres"
|
||||
- "--hostname=localhost"
|
||||
- "--http-relative-path=/auth"
|
||||
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
|
|
Loading…
Reference in a new issue