isididiidid commited on
Commit
9e9c2e1
·
verified ·
1 Parent(s): b8fa7b5

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +12 -0
docker-compose.yml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3'
2
+ services:
3
+ kilo2api:
4
+ build: .
5
+ ports:
6
+ - "${PORT:-7860}:7860"
7
+ volumes:
8
+ - ${STORAGE_PATH:-/data}:/app/kilo2api/data
9
+ environment:
10
+ - KL_COOKIE=${KL_COOKIE}
11
+ - API_SECRET=${API_SECRET:}
12
+ - TZ=${TZ:-Asia/Shanghai}