22 lines
436 B
YAML
22 lines
436 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
test-db:
|
|
image: postgres:15-alpine
|
|
environment:
|
|
POSTGRES_USER: testuser
|
|
POSTGRES_PASSWORD: testpass
|
|
POSTGRES_DB: music_server_test
|
|
ports:
|
|
- "5433:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
volumes:
|
|
- test-db-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
test-db-data:
|