Changed docker run command.
This commit is contained in:
parent
e4411e8fa1
commit
e22e5bbeab
1 changed files with 9 additions and 8 deletions
17
README.md
17
README.md
|
|
@ -19,14 +19,15 @@ You can run the docker container on Windows, Linux. To get started either use _D
|
||||||
### Docker Run
|
### Docker Run
|
||||||
|
|
||||||
```console
|
```console
|
||||||
docker run --cap-add=NET_ADMIN -d \
|
docker run --pull=always
|
||||||
-v /your/download/path/:/data/downloads \
|
--cap-add=NET_ADMIN -d \
|
||||||
-v /your/storage/path/:/data/db \
|
--volume /your/download/path/:/data/downloads \
|
||||||
--log-driver json-file \
|
--volume /your/storage/path/:/data/db \
|
||||||
--log-opt max-size=10m \
|
--log-driver json-file \
|
||||||
-p 6500:6500 \
|
--log-opt max-size=10m \
|
||||||
--name rdtclient \
|
-p 6500:6500 \
|
||||||
rogerfar/rdtclient:latest
|
--name rdtclient \
|
||||||
|
rogerfar/rdtclient:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
Replace `/your/download/path/` with your local path to download files to. For Windows i.e. `C:/Downloads`.
|
Replace `/your/download/path/` with your local path to download files to. For Windows i.e. `C:/Downloads`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue