feat: add cocker-compose yaml

This commit is contained in:
root
2025-07-13 10:31:33 +08:00
parent 0b403cac22
commit bc96260ec8
5 changed files with 110 additions and 6 deletions

17
docker-compose.test.yaml Normal file
View File

@@ -0,0 +1,17 @@
services:
postgres:
image: postgres:15-alpine
container_name: mixvideo_postgres_test
restart: unless-stopped
environment:
POSTGRES_PASSWORD: mixvideo_password
POSTGRES_DB: mixvideo
POSTGRES_USER: mixvideo_user
ports:
- "5433:5432"
volumes:
- postgres_test_data:/var/lib/postgresql/data
volumes:
postgres_test_data:
driver: local