Spaces:
Runtime error
Runtime error
File size: 452 Bytes
9dcbf04 6f9f0a1 9dcbf04 7e612d3 6f9f0a1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | version: '3.4'
services:
kilo2api:
image: deanxv/kilo2api:latest
container_name: kilo2api
restart: always
ports:
- "7860:7860"
volumes:
- ./data:/app/kilo2api/data
environment:
- KL_COOKIE=$(cat /run/secrets/KL_COOKIE) # cookie (多个请以,分隔)
- API_SECRET=$(cat /run/secrets/API_SECRET) # [可选]接口密钥-修改此行为请求头校验的值(多个请以,分隔)
- TZ=Asia/Shanghai
|