Some checks failed
Backend Actions / check (push) Failing after 3m26s
Frontend Actions / check (push) Failing after 3m17s
Backend Actions / test (push) Failing after 3m20s
Frontend Actions / test (push) Successful in 51s
Frontend Actions / build (push) Successful in 56s
Backend Actions / build (push) Failing after 10m57s
26 lines
438 B
YAML
26 lines
438 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_dev
|
|
ports:
|
|
- "5432:5432"
|