Files
mixmaker/compose.dev.yaml
lemintare 1239fcee08
Some checks failed
CI / backend (push) Has been cancelled
CI / frontend (push) Has been cancelled
CI / compose (push) Has been cancelled
Initialize project with basic structure, including Docker configuration, backend and frontend setup, environment configuration, and essential files for development.
2026-07-19 00:17:31 +03:00

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: