mirror of
https://github.com/missuo/FreeGPT35.git
synced 2025-10-17 16:07:11 +00:00
add compose
This commit is contained in:
15
README.md
15
README.md
@@ -2,7 +2,22 @@
|
|||||||
Use ChatGPT Web login-free version unlimited free use of **GPT-3.5-Turbo**. Forked from [https://github.com/skzhengkai/free-chatgpt-api](https://github.com/skzhengkai/free-chatgpt-api).
|
Use ChatGPT Web login-free version unlimited free use of **GPT-3.5-Turbo**. Forked from [https://github.com/skzhengkai/free-chatgpt-api](https://github.com/skzhengkai/free-chatgpt-api).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
### Use Node
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install
|
npm install
|
||||||
node app.js
|
node app.js
|
||||||
```
|
```
|
||||||
|
### Use Docker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -p 3040:3040 missuo/freegpt35
|
||||||
|
```
|
||||||
|
|
||||||
|
### Use Docker Compose
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir freegpt35 && cd freegpt35
|
||||||
|
wget -O compose.yaml https://raw.githubusercontent.com/missuo/FreeGPT35/main/compose.yaml
|
||||||
|
docker compose up -d
|
||||||
|
```
|
6
compose.yaml
Normal file
6
compose.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
services:
|
||||||
|
claude2openai:
|
||||||
|
image: missuo/freegpt35:latest
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "3040:3040"
|
Reference in New Issue
Block a user