Files
nuchat/docker-compose.yml
Fergus Molloy 70835f04fa
All checks were successful
Backend Actions / check (push) Successful in 28s
Backend Actions / build (push) Successful in 27s
Backend Actions / test (push) Successful in 35s
add ui docker build
2025-07-25 17:12:13 +01:00

26 lines
434 B
YAML

services:
backend:
build: ./backend
ports:
- "7000:7000"
command: --host 0.0.0.0
depends_on:
- db
frontend:
build: ./ui
ports:
- "3000:3000"
command: --host 0.0.0.0
depends_on:
- db
db:
image: postgres:17-alpine
environment:
POSTGRES_USER: $POSTGRES_USER
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
POSTGRES_DB: nuchat
ports:
- "5432:5432"