mirror of
https://github.com/TheSmallHanCat/sora2api.git
synced 2026-02-03 17:54:46 +08:00
17 lines
356 B
YAML
17 lines
356 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
sora2api:
|
|
image: thesmallhancat/sora2api:latest
|
|
container_name: sora2api
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./config/setting.toml:/app/config/setting.toml
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- TZ=Asia/Shanghai
|
|
- TIMEZONE_OFFSET=8
|
|
restart: unless-stopped
|