Skip to content

Commit 16217d1

Browse files
authored
Merge pull request #134 from Dogtiti/feature/docker
docs: update README
2 parents 0252db9 + 1b8bfdd commit 16217d1

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

.github/workflows/build-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
REGISTRY: docker.io
10-
IMAGE_NAME: Dogtititi/AutoGPT-Next-Web
10+
IMAGE_NAME: dogtititi/autogpt-next-web
1111

1212
jobs:
1313
build-and-push-image:

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,20 @@ A: The project originated from AgentGPT. Our goal is to continuously provide use
5454

5555
## Docker Deployment
5656

57-
### Docker Setup
57+
### Docker Local Setup
5858

5959
The easiest way to run AutoGPT-Next-Web locally is by using docker.
60-
A convenient setup script is provided to help you get started.
6160

6261
```bash
63-
./setup.sh --docker
62+
docker-compose -f docker-compose-local.yml up -d --remove-orphans
6463
```
6564

66-
### Docker-compose
65+
### Docker-Image
6766

68-
Using `docker-compose` deploy
67+
Using `docker-image`
6968

7069
```bash
71-
./setup.sh --docker-compose
70+
docker-compose up -d --remove-orphans
7271
```
7372

7473
### Local Development Setup
@@ -77,7 +76,7 @@ If you wish to develop AutoGPT-Next-Web locally, the easiest way is to
7776
use the provided setup script.
7877

7978
```bash
80-
./setup.sh --local
79+
./setup.sh
8180
```
8281

8382
### Manual Setup
@@ -114,7 +113,8 @@ NODE_ENV=development
114113
NEXTAUTH_SECRET=''
115114
NEXTAUTH_URL=http://localhost:3000
116115
DATABASE_URL=file:./db.sqlite
117-
116+
NEXT_PUBLIC_WEB_SEARCH_ENABLED='' #true or false
117+
SERP_API_KEY=''
118118
# Your open api key
119119
OPENAI_API_KEY=''
120120
```

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ volumes:
55

66
services:
77
autogpt:
8-
image: Dogtiti/AutoGPT-Next-Web:main
8+
image: dogtititi/autogpt-next-web:main
99
container_name: autogpt
1010
environment:
1111
OPENAI_API_KEY: ${OPENAI_API_KEY} # openai api key

docs/README_CN.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,26 +54,28 @@ A:项目源自于 AgentGPT,我们目标是持续输出对国内用户友好
5454

5555
## Docker 部署
5656

57-
### Docker 配置
57+
### Docker 本地配置
5858

59-
使用 Docker 是在本地运行 AutoGPT-Next-Web 最简单的方法,这里提供了便捷的脚本以帮助您快速入门
59+
使用 Docker 是在本地运行 AutoGPT-Next-Web 最简单的方法。
6060

6161
```bash
62-
./setup.sh --docker
62+
docker-compose -f docker-compose-local.yml up -d --remove-orphans
6363
```
64-
### Docker-compose
6564

66-
使用 `docker-compose` 部署
65+
### Docker-Image
66+
67+
使用 `docker-image` 部署
68+
6769
```bash
68-
./setup.sh --docker-compose
70+
docker-compose up -d --remove-orphans
6971
```
7072

7173
### 本地开发环境配置
7274

7375
如果您想在本地开发 AutoGPT-Next-Web,则最简单的方法是使用提供的设置脚本。
7476

7577
```bash
76-
./setup.sh --local
78+
./setup.sh
7779
```
7880

7981
### 手动配置

0 commit comments

Comments
 (0)