Re-consistentize $PWD usage

This commit is contained in:
Tianon Gravi
2015-04-21 09:41:47 -06:00
parent 9d7330fe6d
commit 28746f04da
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ Starting the Julia REPL is as easy as the following:
## Run Julia script from your local directory inside container
docker run -it --rm -v $(pwd):/usr/myapp -w /usr/myapp julia julia script.jl arg1 arg2
docker run -it --rm -v "$PWD":/usr/myapp -w /usr/myapp julia julia script.jl arg1 arg2
# License
+1 -1
View File
@@ -16,4 +16,4 @@ Starting the Julia REPL is as easy as the following:
## Run Julia script from your local directory inside container
docker run -it --rm -v $(pwd):/usr/myapp -w /usr/myapp julia julia script.jl arg1 arg2
docker run -it --rm -v "$PWD":/usr/myapp -w /usr/myapp julia julia script.jl arg1 arg2