Skip to content
This repository was archived by the owner on Sep 26, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/toolbox_install_mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,35 @@ Virtual Box VM, it maintains its configuration between uses.

For more examples and ideas, visit:
https://docs.docker.com/userguide/

## How to uninstall Toolbox

Removing Toolbox involves removing all the Docker components it includes. In some cases, you might want to keep the machines you created with Docker Machine, so that step is described here as optional.

To uninstall Toolbox on a Mac, do the following:

1. List your machines.
```
$ docker-machine ls
NAME ACTIVE DRIVER STATE URL SWARM
dev * virtualbox Running tcp://192.168.99.100:2376
my-docker-machine virtualbox Stopped
default virtualbox Stopped
```

2. Optionally, remove each machine. For example:

```
$ docker-machine rm my-docker-machine
Successfully removed my-docker-machine
```

3. Remove the Docker Quickstart Terminal and Kitematic from your “Applications” folder.

4. Remove the `docker`, `docker-compose`, and `docker-machine` commands from the `/usr/local/bin` folder.

```
$ rm /usr/local/bin/docker
$ rm /usr/local/bin/docker-compose
$ rm /usr/local/bin/docker-machine
```
27 changes: 27 additions & 0 deletions docs/toolbox_install_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,31 @@ A Windows specific problem you might encounter has to do with the NDIS6 host net
versions. For Windows Vista systems and newer, VirtualBox installs NDIS6 driver by default. Issues can range from system slowdowns to networking problems for the virtual machine (VM). If you notice problems, **re-run the Docker Toolbox installer**, and select the option to _**install VirtualBox with the NDIS5 driver**_.


## How to uninstall Toolbox

Removing Toolbox involves removing all the Docker components it includes. In
some cases, you might want to keep the machines you created with Docker Machine, so that step is described here as optional.

To uninstall Toolbox on Windows, do the following:

1. List your machines.
```
$ docker-machine ls
NAME ACTIVE DRIVER STATE URL SWARM
dev * virtualbox Running tcp://192.168.99.100:2376
my-docker-machine virtualbox Stopped
default virtualbox Stopped
```

2. Optionally, remove each machine. For example:

```
$ docker-machine rm my-docker-machine
Successfully removed my-docker-machine
```

3. Uninstall Docker Toolbox using Window’s standard process for uninstalling programs through the control panel.

>**Note:** This process does not remove the `docker-install.exe` file. You must delete that file yourself.