Compare commits
No commits in common. "60cda9502d88ac8ba4f5e866673b25f15c236fce" and "93d002e1e6fcc08d8423ad0979bb04b64d355380" have entirely different histories.
60cda9502d
...
93d002e1e6
4 changed files with 1927 additions and 24 deletions
18
compose.yml
18
compose.yml
|
@ -1,18 +0,0 @@
|
|||
volumes:
|
||||
postgres_data:
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:17.4
|
||||
container_name: casino-db
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: postgresdb
|
||||
POSTGRES_USER: postgres_user
|
||||
POSTGRES_PASSWORD: postgres_pass
|
||||
healthcheck:
|
||||
test: "exit 0"
|
||||
ports:
|
||||
- "5432:5432"
|
Binary file not shown.
|
@ -1,13 +1,49 @@
|
|||
volumes:
|
||||
casino-db-data:
|
||||
keycloak_data:
|
||||
postgres_data_keycloak_db:
|
||||
postgres_data:
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:17.4
|
||||
container_name: casino-db
|
||||
restart: unless-stopped
|
||||
keycloak_lf12:
|
||||
image: quay.io/keycloak/keycloak:23.0
|
||||
volumes:
|
||||
- casino-db-data:/var/lib/postgresql/data
|
||||
- keycloak_data:/opt/keycloak/data
|
||||
- ./imports:/opt/keycloak/data/import
|
||||
command:
|
||||
- start-dev
|
||||
- --import-realm
|
||||
environment:
|
||||
KC_DB: postgres
|
||||
KC_DB_URL_HOST: keycloakdb_svr
|
||||
KC_DB_URL_DATABASE: keycloakdb
|
||||
KC_DB_PASSWORD: postgres_pass
|
||||
KC_DB_USERNAME: postgres_user
|
||||
KC_DB_SCHEMA: public
|
||||
KEYCLOAK_ADMIN: admin
|
||||
KEYCLOAK_ADMIN_PASSWORD: admin
|
||||
ports:
|
||||
- "9090:8080"
|
||||
depends_on:
|
||||
keycloakdb_svr:
|
||||
condition: service_healthy
|
||||
|
||||
keycloakdb_svr:
|
||||
image: postgres:17.4
|
||||
volumes:
|
||||
- postgres_data_keycloak_db:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: keycloakdb
|
||||
POSTGRES_USER: postgres_user
|
||||
POSTGRES_PASSWORD: postgres_pass
|
||||
healthcheck:
|
||||
test: "exit 0"
|
||||
ports:
|
||||
- "9433:5432"
|
||||
|
||||
postgres_db:
|
||||
image: postgres:17.4
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: postgresdb
|
||||
POSTGRES_USER: postgres_user
|
||||
|
|
1885
docker/imports/lf12-realm.json
Normal file
1885
docker/imports/lf12-realm.json
Normal file
File diff suppressed because it is too large
Load diff
Reference in a new issue