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>
20 lines
485 B
YAML
20 lines
485 B
YAML
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: xpeditis-postgres
|
|
environment:
|
|
POSTGRES_USER: xpeditis
|
|
POSTGRES_PASSWORD: xpeditis_dev_password
|
|
POSTGRES_DB: xpeditis_dev
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
redis:
|
|
image: redis:7
|
|
container_name: xpeditis-redis
|
|
command: redis-server --requirepass xpeditis_redis_password
|
|
environment:
|
|
REDIS_PASSWORD: xpeditis_redis_password
|
|
ports:
|
|
- "6379:6379"
|