breve/compose.yaml

26 lines
540 B
YAML
Raw Normal View History

2025-02-07 21:58:53 +01:00
services:
server:
depends_on:
2025-02-07 22:02:55 +01:00
postgres:
condition: service_healthy
2025-02-07 21:58:53 +01:00
build:
context: .
target: final
ports:
- 3334:3334
postgres:
image: postgres:17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
2025-02-07 22:02:55 +01:00
- 5432:5432
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s