18 lines
408 B
YAML
18 lines
408 B
YAML
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:
|
|
- "5433:5432" # 使用不同的外部端口
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|
|
driver: local
|