diff options
author | Florian Dold <florian@dold.me> | 2020-11-25 16:47:30 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2020-11-25 16:47:30 +0100 |
commit | f3842bc5fb38e9e87cc6eee0cf84797b1b6022c4 (patch) | |
tree | 435060b13cfbd2de30979e44b071b6e8f3c37798 | |
parent | 615d3fa4d0705d1a4dd3dd203f7738fe531dacda (diff) |
missing slash in docker mount path
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ We also provide a `Dockerfile` for a container that can build the WebExtension: (host)$ docker build --tag walletbuilder contrib/wallet-docker # Run container with wallet source mounted -(host)$ docker run -it -v $PWD:wallet-core walletbuilder +(host)$ docker run -it -v $PWD:/wallet-core walletbuilder # Run build inside container (container)$ cd wallet-core |