20 lines
417 B
YAML
20 lines
417 B
YAML
services:
|
|
db:
|
|
image: postgres:17-alpine
|
|
environment:
|
|
POSTGRES_DB: mixmaker
|
|
POSTGRES_USER: mixmaker
|
|
POSTGRES_PASSWORD: mixmaker
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_dev_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U mixmaker -d mixmaker"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
|
|
volumes:
|
|
postgres_dev_data:
|