27 lines
473 B
YAML
27 lines
473 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
database:
|
|
image: postgres:alpine
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
portfolio:
|
|
build: .
|
|
ports:
|
|
- "4002:4002"
|
|
restart: unless-stopped
|
|
image: docker.dariusklein.nl/portfolio:latest
|
|
depends_on:
|
|
database:
|
|
condition: service_healthy
|
|
|