Skip to content

Commit

Permalink
fix start.sh to work on macos (#5019)
Browse files Browse the repository at this point in the history
remove extra leading / in volume mount command
  • Loading branch information
dgrove-oss authored Oct 30, 2020
1 parent dfbd2ac commit 1142068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/standalone/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ shift
docker run --rm -d \
-h openwhisk --name openwhisk \
-p 3233:3233 -p 3232:3232 \
-v //var/run/docker.sock:/var/run/docker.sock \
-v /var/run/docker.sock:/var/run/docker.sock \
"$IMAGE" "$@"
docker exec openwhisk waitready
case "$(uname)" in
Expand Down

0 comments on commit 1142068

Please sign in to comment.