Skip to content

Instantly share code, notes, and snippets.

@TonyApuzzo
Created August 9, 2019 17:46
Show Gist options
  • Save TonyApuzzo/e00721ce59ee42b6164bfe515e474038 to your computer and use it in GitHub Desktop.
Save TonyApuzzo/e00721ce59ee42b6164bfe515e474038 to your computer and use it in GitHub Desktop.
{
"version": "nightly",
"description": "Docker. Open platform for developers and sysadmins to build, ship, and run distributed applications, whether on laptops, data center VMs, or the cloud.",
"homepage": "https://www.docker.com/",
"license": {
"identifier": "Apache-2.0",
"url": "https://github.com/moby/moby/blob/master/LICENSE"
},
"notes": [
"This version of docker manifest is nightly and have it's own mind.",
"All files will be installed into DEFAULT docker directory. (C:\\Program Files\\Docker)",
"I suggest to change docker images location:",
" https://docs.docker.com/v1.11/engine/reference/commandline/daemon/#daemon-configuration-file",
"",
"Updating is handled by docker itself.",
" No updates will be done to this manifest.",
"",
"'scoop uninstall docker' will uninstall docker completely.",
" Images, vms, settings, ..."
],
"architecture": {
"64bit": {
"url": "https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe#/dockerInstall.exe",
"pre_install": [
"if(is_admin) {",
" if((Get-WindowsOptionalFeature -FeatureName Microsoft-Hyper-V-All -Online).State -eq 'Disabled') {",
" Write-Host 'Hyper-V is disabled. Enabling. Please restart PC before first start of Docker.' -f Yellow",
" Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All -NoRestart",
" }",
"}"
],
"installer": {
"args": [
"install",
"--quiet"
],
"keep": true
},
"uninstaller": {
"file": "dockerInstall.exe",
"args": [
"uninstall",
"--quiet"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment