DockStation / dockstation

DockStation is developer-centric application to managing projects based on Docker. Instead of lots of CLI commands you can monitor, configure, and manage services and containers using just a GUI.
https://dockstation.io/
2.14k stars 106 forks source link

New docker version incompatibility temporary fix #155

Closed x3medima17 closed 5 years ago

x3medima17 commented 5 years ago

As I use this tool almost 90% of my work time, it is hard to work without it. Due to breaking change in docker API, I had to find a workaround that I want to share with the community. https://download.docker.com Here you can find previous version of docker client that does not have that change. Then make a symlink to your bin directory, keeping the old executable. In my case:

mv /usr/local/bin/docker /usr/local/bin/docker.bak
sudo ln -s /Users/dumitrusavva/Downloads/docker/docker /usr/local/bin/docker

Now everything works fine

Solving #152