# Postgres de développement local pour NerdWare. # docker compose up -d # Puis depuis apps/server : bun run db:migrate && bun run db:seed services: postgres: image: postgres:17-alpine container_name: nerdware-postgres restart: unless-stopped environment: POSTGRES_USER: nerdware POSTGRES_PASSWORD: nerdware POSTGRES_DB: nerdware ports: - "5432:5432" volumes: - nerdware-pgdata:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U nerdware -d nerdware"] interval: 5s timeout: 5s retries: 5 volumes: nerdware-pgdata: