Mounts denied. The paths … are not shared from OS X and are not known to Docker

Docker for Mac volume mounts behave differently than the base Docker system. This is mostly because Docker tries to comply with Apple’s filesystem sandbox guidelines. As shown in Docker’s preferences, only certain paths are exported by macOS. /Users /Volumes /tmp /private /var in macOS is a symbolic link into /private. That is also true for … Read more

cannot download, $GOPATH not set

[Update: as of Go 1.8, GOPATH defaults to $HOME/go, but you may still find this useful if you want to understand the GOPATH layout, customize it, etc.] The official Go site discusses GOPATH and how to lay out a workspace directory. export GOPATH=”$HOME/your-workspace-dir/” — run it in your shell, then add it to ~/.bashrc or … Read more

How do I use JDK 7 on Mac OSX?

This is how I got 1.7 to work with Eclipse. I hope it helps. I Downloaded the latest OpenJDK 1.7 universal (32/64 bits) JDK from Mac OS/X branch from http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html copied the jdk to /Library/Java/JavaVirtualMachines/ next to the default 1.6.0 one In Eclipse > Preferences > Java > Installed JREs you add a new one, … Read more