Skip to content

Commit

Permalink
chore: update docker command
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie committed Jul 19, 2023
1 parent 5b945b1 commit eb79dd5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ go install github.com/GopeedLab/gopeed/cmd/gopeed@latest
#### Start directly

```bash
docker run -d -p 9999:9999 -v /path/to/download:/download liwei2633/gopeed
docker run -d -p 9999:9999 -v /path/to/download:/root/Downloads liwei2633/gopeed
```

#### Using Docker Compose
Expand All @@ -57,8 +57,6 @@ docker-compose up -d

When the docker container is running, you can access the web page through `http://localhost:9999`.

> Tip: Modify the download path to `/download` on the setting page to access the downloaded files on the host.
## Donate

If you like this project, please consider [donating](/.donate/index.md#donate) to support the development of this project, thank you!
Expand Down
4 changes: 1 addition & 3 deletions README_ja-JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ go install github.com/GopeedLab/gopeed/cmd/gopeed@latest
#### 直接始める

```bash
docker run -d -p 9999:9999 -v /path/to/download:/download liwei2633/gopeed
docker run -d -p 9999:9999 -v /path/to/download:/root/Downloads liwei2633/gopeed
```

#### Docker Compose の使用
Expand All @@ -57,8 +57,6 @@ docker-compose up -d

docker コンテナが起動しているときは、`http://localhost:9999` からウェブページにアクセスできます。

> ヒント: 設定ページでダウンロードパスを `/download` に変更すると、ホスト上でダウンロードしたファイルにアクセスできます。
## 寄付

もしこのプロジェクトがお気に召しましたら、このプロジェクトの発展を支援するために[寄付](/.donate/index.md#donate)をご検討ください!
Expand Down
3 changes: 1 addition & 2 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ go install github.com/GopeedLab/gopeed/cmd/gopeed@latest
#### 直接运行

```bash
docker run -d -p 9999:9999 -v /path/to/download:/download liwei2633/gopeed
docker run -d -p 9999:9999 -v /path/to/download:/root/Downloads liwei2633/gopeed
```

#### 使用 Docker Compose
Expand All @@ -56,7 +56,6 @@ docker-compose up -d
#### 访问服务

当 docker 容器运行时,可以通过 `http://localhost:9999` 访问 web 页面。
> 提示:在设置页面把下载路径修改为 `/download` 以便在宿主机访问下载完的文件。

## 打赏

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ services:
- 9999:9999 # HTTP port (host:container)
image: liwei2633/gopeed
volumes:
- ~/Downloads:/download # replace with your prefer path
- ~/Downloads:/root/Downloads # replace with your prefer path
restart: unless-stopped

0 comments on commit eb79dd5

Please sign in to comment.