Skip to content

Commit

Permalink
Update two Docker doc links in README.
Browse files Browse the repository at this point in the history
Add leave_paths_alone.sh that enables init scripts to run on Docker Toolbox for Windows.
  • Loading branch information
normangilmore committed Jun 17, 2017
1 parent b6a764e commit 7a6926f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ The backend is supported by Docker. If you do not have it already, you will need
* For OS X, go [here](https://docs.docker.com/docker-for-mac/).
* For Windows, go [here](https://docs.docker.com/docker-for-windows/).
* For Ubuntu and other Linux distributions, install
[docker](https://docs.docker.com/engine/installation/linux/ubuntulinux/) and
[docker](https://docs.docker.com/engine/installation/linux/ubuntu/) and
[docker-compose](https://docs.docker.com/compose/install/).
To [avoid having to use sudo when you use the docker command](https://docs.docker.com/engine/installation/linux/ubuntulinux/#/create-a-docker-group),
To [avoid having to use sudo when you use the docker command](https://docs.docker.com/engine/installation/linux/linux-postinstall/),
create a Unix group called docker and add users to it:
1. `sudo groupadd docker`
2. `sudo usermod -aG docker $USER`
Expand Down
6 changes: 6 additions & 0 deletions leave_paths_alone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
# Fix only for Docker Toolbox on Windows using Git Bash / Mingw
echo "Enter: source leave_paths_alone.sh"
echo "Do this before trying to run any of the init_*.sh scripts."
echo "export MSYS_NO_PATHCONV=1"
export MSYS_NO_PATHCONV=1

0 comments on commit 7a6926f

Please sign in to comment.