36 lines
706 B
YAML
36 lines
706 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_USER: ralph
|
|
POSTGRES_PASSWORD: ralph
|
|
POSTGRES_DB: ralph
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ralph"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
api:
|
|
build: ./backend
|
|
environment:
|
|
DATABASE_URL: postgres://ralph:ralph@postgres:5432/ralph?sslmode=disable
|
|
LISTEN_ADDR: :8080
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
|
|
webapp:
|
|
build: ./webapp
|
|
ports:
|
|
- "9050:80"
|
|
depends_on:
|
|
- api
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
pgdata:
|