-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker.json
48 lines (48 loc) · 1.94 KB
/
docker.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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://desktop.docker.com/win/stable/amd64/Docker%20Desktop%20Installer.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"
]
}
}
}
}