Files
MusicServer/compose.test.yaml
Sansan a446dad7b6
Build / build (push) Successful in 48s
Make pool and poolSong global variables
2026-05-26 20:54:12 +02:00

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: