Merge branch 'RED-7967' into 'main'

Migration with multi arch images

See merge request fforesight/tenant-user-management-service!52
This commit is contained in:
Timo Bejan 2023-12-05 08:38:41 +01:00
commit 362a86916a

View File

@ -2,7 +2,7 @@ version: '3.9'
services:
tenant-database:
image: nexus.knecon.com:5001/migration/redtenant-db-staging
image: nexus.knecon.com:5001/migration/redtenant-db-staging-multi-arch
ports:
- 15432:5432
environment:
@ -10,7 +10,7 @@ services:
- POSTGRES_USER=tenant
- POSTGRES_DB=red-tenant
main-database:
image: nexus.knecon.com:5001/migration/tenantmanager-db-staging
image: nexus.knecon.com:5001/migration/tenantmanager-db-staging-multi-arch
ports:
- 25432:5432
environment:
@ -18,7 +18,7 @@ services:
- POSTGRES_USER=tenantmanager
- POSTGRES_DB=tenantmanager
keycloak-database:
image: nexus.knecon.com:5001/migration/keycloak-db
image: nexus.knecon.com:5001/migration/keycloak-db-multi-arch
ports:
- 35432:5432
environment:
@ -64,3 +64,7 @@ services:
image: adminer:latest
ports:
- "58080:8080"
# pg_dump bitnami_keycloak -U bn_keycloak -h 127.0.0.1 -p 35432 > data.sql
# pg_dump tenantmanager -U tenantmanager -h 127.0.0.1 -p 25432 > data.sql
# pg_dump red-tenant -U tenant -h 127.0.0.1 -p 15432 > data.sql