Initial import with GitLab CI/CD and registry deploy flow

This commit is contained in:
Yera All
2026-04-02 17:05:45 +05:00
commit 5374c202d9
338 changed files with 81297 additions and 0 deletions
@@ -0,0 +1,21 @@
name: call-center-postgres
services:
postgres:
container_name: call-center-postgres
image: postgres:16-alpine
restart: unless-stopped
env_file:
- ../.env.postgres.server
ports:
- "127.0.0.1:5434:5432"
volumes:
- ../.data_pg:/var/lib/postgresql/data
healthcheck:
test:
- CMD-SHELL
- pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"
interval: 10s
timeout: 5s
retries: 12
start_period: 15s