- Remove HEALTHCHECK from backend Dockerfile - Remove health checks from docker-compose.yml - Change frontend depends_on to service_started - Health checks can be added back once image tools are known Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
services:
|
|
# PostgreSQL Database
|
|
db:
|
|
image: postgres:15-alpine
|
|
container_name: deutschlernen-db
|
|
environment:
|
|
POSTGRES_DB: DeutschLernen
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres -d DeutschLernen"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
restart: unless-stopped
|
|
|
|
# Backend API
|
|
backend:
|
|
build:
|
|
context: ./GermanApp
|
|
dockerfile: Dockerfile
|
|
container_name: deutschlernen-backend
|
|
environment:
|
|
ASPNETCORE_ENVIRONMENT: Development
|
|
ASPNETCORE_URLS: http://+:8080
|
|
ConnectionStrings__DefaultConnection: Host=db;Port=5432;Database=DeutschLernen;Username=postgres;Password=postgres
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
ports:
|
|
- "8080:8080"
|
|
restart: unless-stopped
|
|
|
|
# Frontend
|
|
frontend:
|
|
build:
|
|
context: ./german-app-frontend
|
|
dockerfile: Dockerfile
|
|
container_name: deutschlernen-frontend
|
|
environment:
|
|
NODE_ENV: production
|
|
depends_on:
|
|
backend:
|
|
condition: service_started
|
|
ports:
|
|
- "3000:3000"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
postgres_data:
|