KI-AGENT: Zentralen Push-Server Stack ergänzen

This commit is contained in:
2026-05-22 16:53:27 +02:00
parent 19bab852de
commit 5a4de421ce
43 changed files with 17731 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
services:
postgres:
image: postgres:17
environment:
POSTGRES_DB: fedeo_push
POSTGRES_USER: fedeo_push
POSTGRES_PASSWORD: fedeo_push
ports:
- "5442:5432"
volumes:
- push_postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U fedeo_push -d fedeo_push"]
interval: 10s
timeout: 5s
retries: 5
api:
build:
context: .
dockerfile: apps/api/Dockerfile
env_file: .env
environment:
DATABASE_URL: postgres://fedeo_push:fedeo_push@postgres:5432/fedeo_push
ports:
- "4020:4020"
depends_on:
postgres:
condition: service_healthy
admin:
build:
context: .
dockerfile: apps/admin/Dockerfile
env_file: .env
environment:
NUXT_PUBLIC_API_BASE: http://localhost:4020
ports:
- "3020:3000"
depends_on:
- api
volumes:
push_postgres_data: