Files
holiday-property-booking/docker-compose.yml
Chris Dumas b781967a14
Some checks failed
Deploy Holiday Property Booking / deploy (push) Successful in 1m36s
Test & Build Holiday Property Booking / test-build (push) Has been cancelled
fix: remove base compose port binding
2026-05-22 08:28:38 +00:00

28 lines
752 B
YAML

services:
web:
build:
context: .
dockerfile: Dockerfile
environment:
NODE_ENV: production
PORT: ${PORT:-3000}
NEXT_PUBLIC_SITE_URL: ${NEXT_PUBLIC_SITE_URL:-http://localhost:3000}
DATABASE_URL: ${DATABASE_URL:-postgresql://postgres:postgres@db:5432/holiday_property_booking?schema=public}
depends_on:
db:
condition: service_healthy
db:
image: postgres:16-alpine
environment:
POSTGRES_DB: holiday_property_booking
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "${DB_PORT:-5432}:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d holiday_property_booking"]
interval: 5s
timeout: 5s
retries: 10