Updated Developer Guide: Installing and using Docker (markdown) authored by Christian Bauer's avatar Christian Bauer
...@@ -9,13 +9,6 @@ docker version ...@@ -9,13 +9,6 @@ docker version
docker-machine version docker-machine version
``` ```
### Disconnecting from a remote engine
Once Docker Community edition is installed then you will be connected to your local Docker engine; if you have used docker-machine to connect to a remote engine then you can `disconnect` from that remote engine using the command:
```
docker-machine env -u
```
### Enabling bash auto-completion ### Enabling bash auto-completion
You might want to install bash auto-completion for Docker commands. On OS X, install: You might want to install bash auto-completion for Docker commands. On OS X, install:
...@@ -58,6 +51,14 @@ To remove data volumes no longer referenced by a container (deleting ALL persist ...@@ -58,6 +51,14 @@ To remove data volumes no longer referenced by a container (deleting ALL persist
docker volume prune docker volume prune
``` ```
### Disconnecting from a remote engine
Once Docker Community edition is installed then you will be connected to your local Docker engine; if you have used docker-machine to connect to a remote engine then you can `disconnect` from that remote engine using the command:
```
docker-machine env -u
```
## Remote Engine ## Remote Engine
### Installing a remote engine ### Installing a remote engine
... ...
......