From bc54860ad6458a396cfe0cf8529e448f3608b66d Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 5 May 2022 11:48:35 +0800 Subject: [PATCH] Avoid using valid path for illustrative purpose Otherwise docker will really create this example path on host machine which is bad. --- dist/docker/Readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/docker/Readme.md b/dist/docker/Readme.md index d5d4b0d6d..5b856ff09 100644 --- a/dist/docker/Readme.md +++ b/dist/docker/Readme.md @@ -42,8 +42,8 @@ docker build \ -p "$QBT_WEBUI_PORT":"$QBT_WEBUI_PORT" \ -p 6881:6881/tcp \ -p 6881:6881/udp \ - -v /your_path/config:/config \ - -v /your_path/downloads:/downloads \ + -v /config:/config \ + -v /downloads:/downloads \ qbittorrent-nox:"$QBT_VERSION" ``` Then you can login at: `http://127.0.0.1:8080` @@ -67,5 +67,5 @@ docker build \ ### Volumes There are some paths involved: -* `/your_path/config` on your host machine will contain qBittorrent configurations -* `/your_path/downloads` on your host machine will contain the files downloaded by qBittorrent +* `/config` on your host machine will contain qBittorrent configurations +* `/downloads` on your host machine will contain the files downloaded by qBittorrent