Files
flow2api/docker-compose.headed.yml
genz27 a8fce3ed28 chore: 将端口从 8088 改回 8000
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-30 17:14:53 +08:00

23 lines
502 B
YAML

version: '3.8'
services:
flow2api-headed:
build:
context: .
dockerfile: Dockerfile.headed
image: flow2api:headed
container_name: flow2api-headed
ports:
- "8000:8000"
volumes:
- ./data:/app/data
- ./tmp:/app/tmp
- ./config/setting.toml:/app/config/setting.toml
environment:
- PYTHONUNBUFFERED=1
- ALLOW_DOCKER_HEADED_CAPTCHA=true
- DISPLAY=:99
- XVFB_WHD=1920x1080x24
shm_size: "2gb"
restart: unless-stopped