|
@@ -0,0 +1,22 @@
|
|
|
+version: '3.9'
|
|
|
+services:
|
|
|
+ chatgpt-next-web:
|
|
|
+ profiles: ["no-proxy"]
|
|
|
+ container_name: chatgpt-next-web
|
|
|
+ image: yidadaa/chatgpt-next-web
|
|
|
+ ports:
|
|
|
+ - 3000:3000
|
|
|
+ environment:
|
|
|
+ - OPENAI_API_KEY=$OPENAI_API_KEY
|
|
|
+ - CODE=$CODE
|
|
|
+
|
|
|
+ chatgpt-next-web-proxy:
|
|
|
+ profiles: ["proxy"]
|
|
|
+ container_name: chatgpt-next-web-proxy
|
|
|
+ image: yidadaa/chatgpt-next-web
|
|
|
+ ports:
|
|
|
+ - 3000:3000
|
|
|
+ environment:
|
|
|
+ - OPENAI_API_KEY=$OPENAI_API_KEY
|
|
|
+ - CODE=$CODE
|
|
|
+ - PROXY_URL=$PROXY_URL
|