Spaces:
Running
Running
File size: 377 Bytes
b65f9e0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | services:
zai2api:
image: ${ZAI2API_IMAGE:-ghcr.io/orbitoo/zai2api:latest}
pull_policy: always
restart: unless-stopped
env_file:
- .env
environment:
HOST: 0.0.0.0
PORT: 8000
ports:
- "${BIND_HOST:-127.0.0.1}:${HOST_PORT:-8000}:8000"
volumes:
- type: bind
source: ${DATA_DIR:-./data}
target: /app/data
|