feat: add cocker-compose yaml

This commit is contained in:
root
2025-07-13 10:27:24 +08:00
parent 69f0fd756f
commit 0b403cac22
4 changed files with 425 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
postgres:
image: postgres:15-alpine
container_name: mixvideo_postgres
restart: unless-stopped
environment:
POSTGRES_DB: mixvideo
POSTGRES_USER: mixvideo_user
POSTGRES_PASSWORD: mixvideo_password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
driver: local