Last active
April 14, 2016 02:25
-
-
Save superbrothers/c2da90ae793318ca4dd869c2a142f933 to your computer and use it in GitHub Desktop.
Caskfile for dockertoolbox 1.11.0
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
cask 'dockertoolbox' do | |
version '1.11.0' | |
sha256 'be1629bfec6854cf170f0e635858661105d8e0bb1f7656ac510676f5fcc82897' | |
# github.com/docker/toolbox was verified as official when first introduced to the cask | |
url "https://github.com/docker/toolbox/releases/download/v#{version}/DockerToolbox-#{version}.pkg" | |
appcast 'https://github.com/docker/toolbox/releases.atom', | |
checkpoint: '12d86cd293f7dba682b15ead4d2529cc5fe159ba8e751386559795e5efa88efd' | |
name 'Docker Toolbox' | |
homepage 'https://www.docker.com/toolbox' | |
license :apache | |
depends_on cask: 'virtualbox' | |
pkg "DockerToolbox-#{version}.pkg" | |
postflight do | |
set_ownership '~/.docker' | |
end | |
uninstall pkgutil: [ | |
'io.boot2dockeriso.pkg.boot2dockeriso', | |
'io.docker.pkg.docker', | |
'io.docker.pkg.dockercompose', | |
'io.docker.pkg.dockermachine', | |
'io.docker.pkg.dockerquickstartterminalapp', | |
'io.docker.pkg.kitematicapp', | |
] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment