Docker Error for Mac Beta16: Pinata Command Not Found

I have seen the use of Pinata in many instructions for the beta version of Docker for Mac. However, using pinata on the terminal results in a "command not found: pinata" error.

This user on the Docker forums reports the same issue, but there is no resolution. Does anyone have any tips on what to do?

System Information: OSX 10.11.5 Version 1.12.0-rc2-beta16 (build: 9493)

+4
source share
1 answer

Pinata was removed, and some settings were moved to the graphical interface.

Hacker way to change some settings. From the forum :

cd ~/Library/Containers/com.docker.docker/Data/database/com.docker.driver.amd64-linux
echo '{"storage-driver":"aufs","dns":["8.8.8.8"],"insecure-registries":["yourdomain.com:5000"],"debug":true}' > etc/docker/daemon.json
git add etc/docker/daemon.json;
git commit -m 'etc/docker/daemon.json change';

git VMware xhyve (git commit hook?). Docker for Mac OS X .

Docker Mac yourdomain.com:5000 .

docker run -it -rm busybox cat/etc/resolv.conf , 8.8.8.8

+5

All Articles