Files
memohanzi/docker-compose.yml
2025-11-21 09:51:16 +01:00

55 lines
1.2 KiB
YAML

version: '3.8'
services:
nginx:
image: nginx:alpine
container_name: memohanzi-nginx
ports:
- "80:80"
- "443:443"
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
- ./docker/ssl:/etc/nginx/ssl:ro
depends_on:
- app
restart: unless-stopped
app:
container_name: memohanzi-app
build:
context: .
dockerfile: ./docker/Dockerfile
expose:
- "3000"
environment:
- DATABASE_URL=postgresql://memohanzi_user:password@postgres:5432/memohanzi_db
- NEXTAUTH_URL=https://localhost
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
- AUTH_TRUST_HOST=true
- NODE_ENV=production
depends_on:
postgres:
condition: service_healthy
restart: unless-stopped
postgres:
image: postgres:18-alpine
container_name: memohanzi-postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: memohanzi_user
POSTGRES_PASSWORD: password
POSTGRES_DB: memohanzi_db
volumes:
- postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U memohanzi_user"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
volumes:
postgres-data: