BIGFA commited on
Commit
f230827
·
verified ·
1 Parent(s): 99a2ffb

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +13 -0
docker-compose.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ ddg-chat-go:
5
+ container_name: ddg-chat-go
6
+ image: lmyself/ddg-chat-go:latest
7
+ ports:
8
+ - "8787:8787"
9
+ environment:
10
+ API_PREFIX: "/"
11
+ MAX_RETRY_COUNT: 3
12
+ RETRY_DELAY: 5000
13
+ restart: unless-stopped