remove files

This commit is contained in:
Vincent Yang
2024-04-21 03:45:06 -04:00
parent b4c6227075
commit 0ff47d9316
7 changed files with 4 additions and 331 deletions

6
compose/compose.yaml Normal file
View File

@@ -0,0 +1,6 @@
services:
freegpt35:
image: missuo/freegpt35:latest
restart: always
ports:
- "3040:3040"

View File

@@ -0,0 +1,20 @@
services:
lobe-chat:
image: lobehub/lobe-chat
container_name: lobe-chat
restart: always
ports:
- '3210:3210'
environment:
OPENAI_API_KEY: gptyyds
OPENAI_PROXY_URL: http://freegpt35:3040/v1
ACCESS_CODE: HelloGPT
depends_on:
- freegpt35
freegpt35:
image: missuo/freegpt35:latest
restart: always
ports:
- "3040:3040"

View File

@@ -0,0 +1,18 @@
services:
chatgpt-next-web:
image: yidadaa/chatgpt-next-web
ports:
- "3000:3000"
environment:
OPENAI_API_KEY: "gptyyds"
CODE: "HelloGPT" # 如果你想要设置页面的访问密码,请修改这里
BASE_URL: "http://freegpt35:3040"
CUSTOM_MODELS: "-all,+gpt-3.5-turbo"
depends_on:
- freegpt35
freegpt35:
image: missuo/freegpt35:latest
restart: always
ports:
- "3040:3040"