Migration with multi arch images

This commit is contained in:
Timo Bejan 2023-12-05 09:23:49 +02:00
parent 442b12edf9
commit 5dcf0dbef0

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