Created
February 21, 2015 21:56
-
-
Save hd-deman/d856151147ab9c3c3564 to your computer and use it in GitHub Desktop.
Downgrade Boot2Docker and Docker from 1.5.0 to 1.4.1 on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* brew tap homebrew/boneyard | |
* cd $( brew --prefix ) | |
* brew versions docker | |
git_hash = $(brew versions docker | awk '$1 == "1.4.1" {print $4}') | |
* git checkout $git_hash Library/Formula/docker.rb | |
* brew unlink docker | |
* brew install docker | |
* brew switch docker 1.4.1 | |
* docker --version | |
* brew versions boot2docker | |
* git checkout 5cfea87 Library/Formula/boot2docker.rb | |
* brew unlink boot2docker | |
* brew install boot2docker | |
* brew switch boot2docker 1.2.0 | |
* boot2docker version | |
* wget https://github.com/boot2docker/boot2docker/releases/download/v1.2.0/boot2docker.iso -O ~/.boot2docker/boot2docker.iso | |
* boot2docker restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works super well for downgrading the daemon. I couldn't find these directions elsewhere. Specifically this...
wget https://github.com/boot2docker/boot2docker/releases/download/v1.7.1/boot2docker.iso -O ~/.boot2docker/boot2docker.iso
great for working around... moby/moby#15643