Skip to content

Instantly share code, notes, and snippets.

@johnelliott
Last active March 25, 2016 19:24
Show Gist options
  • Select an option

  • Save johnelliott/7631fd23312b2916a11d to your computer and use it in GitHub Desktop.

Select an option

Save johnelliott/7631fd23312b2916a11d to your computer and use it in GitHub Desktop.
docker tips on OSX
# run these to clear up virtualbox space
$ docker rm -f $(docker ps -a -q)
$ docker rmi -f $(docker images -af "dangling=true" -q)
# export a docker machine ip
```bash
export DOCKER_MACHINE_IP=$(docker-machine ip $DOCKER_MACHINE_NAME)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment