docker-osx-dev
docker-osx-dev copied to clipboard
uninstall process
How does one uninstall docker-osx-dev? I tried removing the script, however any host to docker mounts no longer work as they did before docker-osx-dev.
A docker-osx-dev uninstall
command analogous to docker-osx-dev install
would be a great idea. PRs for that are more than welcome :)
The docker-osx-dev
script runs Boot2Docker with the --vbox-share=disable
flag. I suspect if you just run boot2docker stop
and boot2docker start
without any flags, it'll work fine.
Ok thanks, will try it out. Thanks for your work on this project, you put a lot of thought and effort into it :+1:
@brikis98 could you provide just some instructions how we could remove docker-osx-dev
?
As of 03/04/16, uninstalling docker-osx-dev and all of its dependencies would probably take the following:
-
boot2docker stop
ordocker-machine stop dev
- Remove the
dockerhost
entry from/etc/hosts
- Open your env file (
~/.bash_profile
or~/.bashrc
or~/.zshrc
) and remove the entries below the# docker-osx-dev
comment. -
brew uninstall coreutils
-
brew uninstall fswatch
-
brew uninstall docker-machine
-
brew uninstall docker-compose
-
brew uninstall boot2docker
-
brew uninstall caskroom/cask/brew-cask
-
brew untap Caskroom/cask
- Remove
docker-osx-dev
from wherever you downloaded it to (e.g./usr/local/bin
)
Obviously, skip the items you want to keep on your computer.
Thanks :)