feat: export organizations to state corp v3
All checks were successful
CI/CD Pipeline / Quality Gate (push) Successful in 30s
CI/CD Pipeline / Build and Push Images (push) Successful in 41s
CI/CD Pipeline / Internal Notify (push) Successful in 0s
CI/CD Pipeline / Deploy Dev via Compose (push) Successful in 19s

This commit is contained in:
2026-06-13 14:07:40 +02:00
parent 90d6bb90bd
commit f95ba3f56a
11 changed files with 513 additions and 218 deletions

View File

@@ -11,7 +11,7 @@ services:
- ./data/db:/var/lib/postgresql/data
- ./docker/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "5432:5432"
- "${MOSTOVIK_POSTGRES_HOST_PORT:-15432}:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 30s
@@ -29,7 +29,7 @@ services:
volumes:
- ./data/db_exchange_target:/var/lib/postgresql/data
ports:
- "5433:5432"
- "${MOSTOVIK_TARGET_POSTGRES_HOST_PORT:-15433}:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 30s
@@ -41,7 +41,7 @@ services:
container_name: redis
restart: unless-stopped
ports:
- "6379:6379"
- "${MOSTOVIK_REDIS_HOST_PORT:-16379}:6379"
volumes:
- ./data/redis:/data
healthcheck: