Files
AI-Video/docker-compose.yml
2025-11-07 16:59:13 +08:00

104 lines
3.2 KiB
YAML

version: '3.8'
# Build Arguments Configuration
# You can override these by setting environment variables before running docker-compose
#
# Example for China environment (auto uses Tsinghua/Aliyun mirrors):
# USE_CN_MIRROR=true docker-compose up -d
#
# Example for international environment (default):
# docker-compose up -d
#
# Advanced: Use custom PyPI mirror:
# UV_INDEX_URL=https://mirrors.cloud.tencent.com/pypi/simple/ docker-compose up -d
services:
# API Service - FastAPI backend
api:
build:
context: .
dockerfile: Dockerfile
args:
USE_CN_MIRROR: ${USE_CN_MIRROR:-false}
UV_INDEX_URL: ${UV_INDEX_URL:-https://pypi.org/simple}
container_name: pixelle-video-api
command: uv run python api/app.py --host 0.0.0.0 --port 8000
ports:
- "8000:8000"
volumes:
# Mount config file (required, read-write to allow saving from Web UI)
# IMPORTANT: Create config.yaml before first run: cp config.example.yaml config.yaml
- ./config.yaml:/app/config.yaml
# Mount data directories for persistence
# data/ contains: users/, bgm/, templates/, workflows/ (custom resources)
- ./data:/app/data
- ./output:/app/output
# Note: Default resources (bgm/, templates/, workflows/) are baked into the image
# Custom resources in data/* will override defaults
environment:
- TZ=Asia/Shanghai
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
- pixelle-network
# Web UI Service - Streamlit frontend
web:
build:
context: .
dockerfile: Dockerfile
args:
USE_CN_MIRROR: ${USE_CN_MIRROR:-false}
UV_INDEX_URL: ${UV_INDEX_URL:-https://pypi.org/simple}
container_name: pixelle-video-web
command: uv run streamlit run web/app.py --server.port 8501 --server.address 0.0.0.0
ports:
- "8501:8501"
volumes:
# Mount config file (required, read-write to allow saving from Web UI)
# IMPORTANT: Create config.yaml before first run: cp config.example.yaml config.yaml
- ./config.yaml:/app/config.yaml
# Mount data directories for persistence
# data/ contains: users/, bgm/, templates/, workflows/ (custom resources)
- ./data:/app/data
- ./output:/app/output
# Note: Default resources (bgm/, templates/, workflows/) are baked into the image
# Custom resources in data/* will override defaults
environment:
- TZ=Asia/Shanghai
- STREAMLIT_SERVER_PORT=8501
- STREAMLIT_SERVER_ADDRESS=0.0.0.0
- STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
restart: unless-stopped
depends_on:
api:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
- pixelle-network
networks:
pixelle-network:
driver: bridge