File size: 314 Bytes
36cbcc0 80ee8d7 36cbcc0 c21f770 36cbcc0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | version: '3.8'
services:
flow2api:
image: ghcr.io/thesmallhancat/flow2api:latest
container_name: flow2api
ports:
- "38000:8000"
volumes:
- ./data:/app/data
- ./config/setting.toml:/app/config/setting.toml
environment:
- PYTHONUNBUFFERED=1
restart: unless-stopped
|