chitfund / docker-compose.yml
zombee11's picture
Upload 15 files
46f356a verified
Raw
History Blame Contribute Delete
562 Bytes
services:
postgres:
image: postgres:16
environment:
POSTGRES_DB: prize_money_los
POSTGRES_USER: los_user
POSTGRES_PASSWORD: los_password
ports:
- "5432:5432"
volumes:
- ./database/schema.sql:/docker-entrypoint-initdb.d/001-schema.sql:ro
- pgdata:/var/lib/postgresql/data
app:
image: node:24-alpine
working_dir: /app
command: sh -c "npm install && npm run dev"
ports:
- "4000:4000"
- "5173:5173"
volumes:
- ./:/app
depends_on:
- postgres
volumes:
pgdata: