Some checks are pending
CD Production (Hetzner k3s) / Promote Images (preprod → prod) (push) Waiting to run
CD Production (Hetzner k3s) / Deploy to k3s (xpeditis-prod) (push) Blocked by required conditions
CD Production (Hetzner k3s) / Smoke Tests (push) Blocked by required conditions
CD Production (Hetzner k3s) / Deployment Summary (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Success (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Failure (push) Blocked by required conditions
Aligns main with the complete application codebase (cicd branch). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
825 B
YAML
38 lines
825 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
container_name: xpeditis-test-db
|
|
environment:
|
|
POSTGRES_DB: xpeditis_test
|
|
POSTGRES_USER: xpeditis_test
|
|
POSTGRES_PASSWORD: xpeditis_test_password
|
|
PGDATA: /var/lib/postgresql/data/pgdata
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- xpeditis_test_db:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U xpeditis_test"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: xpeditis-test-redis
|
|
ports:
|
|
- '6379:6379'
|
|
volumes:
|
|
- xpeditis_test_redis:/data
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
|
|
volumes:
|
|
xpeditis_test_db:
|
|
xpeditis_test_redis:
|