Update README.md

This commit is contained in:
Ryan McGuire 2019-06-14 10:52:42 -04:00 committed by GitHub
parent 0d197cd793
commit 531f74888d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,3 +59,13 @@ docker run --rm -it -v wallet:/home/lbrynet lbrynet-x86 lbrynet start
This automatically creates a docker volume called `wallet` and it will persist This automatically creates a docker volume called `wallet` and it will persist
across container restarts. See more in the [Docker volume across container restarts. See more in the [Docker volume
documentation](https://docs.docker.com/storage/volumes/) documentation](https://docs.docker.com/storage/volumes/)
If you would rather not use a docker volume, you can mount a directory
from your host instead:
```
docker run --rm -it -v /path/on/your/host:/home/lbrynet lbrynet-x86 lbrynet start
```
Either way, the container uses the configuration from `/home/lbrynet` inside the container.