Files
web-chat/compose.yaml
2024-08-25 22:42:59 +02:00

34 lines
581 B
YAML

version: '3.8'
services:
web-chat:
build:
context: .
environment:
NODE_ENV: production
ports:
- "3000:3000"
depends_on:
- db
db:
image: postgres:latest
restart: always
user: postgres
volumes:
- db-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_DB: webchat
POSTGRES_PASSWORD: jebanechaslo
expose:
- "5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "${PG_USER}"]
interval: 10s
timeout: 5s
retries: 5
volumes:
db-data: