starclaw / docker-compose.yml
Spooker's picture
Upload 5 files
a163595 verified
raw
history blame contribute delete
368 Bytes
services:
zai-openai:
image: python:3.11-slim
container_name: zai-openai
working_dir: /app
restart: unless-stopped
environment:
- LOG_LEVEL=DEBUG
- HTTP_DEBUG=0
volumes:
- ./:/app
command: >
sh -c "pip install --no-cache-dir fastapi uvicorn httpx &&
python openai.py"
ports:
- "30016:30016"