feat: import organization exchange v3
All checks were successful
CI/CD Pipeline / Run Tests (push) Successful in 3m27s
CI/CD Pipeline / Code Quality Checks (push) Successful in 3m47s
CI/CD Pipeline / Build and Push Dev Images (push) Successful in 2m17s
CI/CD Pipeline / Deploy Dev via Compose (push) Successful in 29s

This commit is contained in:
2026-06-13 14:07:40 +02:00
parent 479d81680d
commit f93663b2a4
13 changed files with 1167 additions and 682 deletions

View File

@@ -19,7 +19,7 @@ services:
- ./data/db:/var/lib/postgresql/data
- ./docker/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "5432:5432"
- "${STATE_CORP_POSTGRES_HOST_PORT:-25432}:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]
interval: 10s
@@ -31,7 +31,7 @@ services:
container_name: state_corp_redis
restart: unless-stopped
ports:
- "6379:6379"
- "${STATE_CORP_REDIS_HOST_PORT:-26379}:6379"
volumes:
- ./data/redis:/data
healthcheck:
@@ -54,7 +54,7 @@ services:
redis:
condition: service_healthy
ports:
- "8000:8000"
- "${STATE_CORP_WEB_HOST_PORT:-28000}:8000"
volumes:
- ./src:/app/src
- ./logs:/app/logs