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