-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-toolbox.json
57 lines (57 loc) · 1.87 KB
/
docker-toolbox.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
49
50
51
52
53
54
55
56
57
{
"version": "19.03.1",
"license": "Apache-2.0",
"architecture": {
"64bit": {
"url": "https://github.com/docker/toolbox/releases/download/v19.03.1/DockerToolbox-19.03.1.exe",
"hash": "bf39c167f1c2bfc18651c5ebcbc2deb044119dc527f49f3b0c1012c4fe8e9768"
}
},
"depends": [
"git",
"nonportable/virtualbox-np"
],
"homepage": "https://docker.com",
"description": "Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly.",
"innosetup": true,
"post_install": [
"rm -r \"$dir\\installers\"",
"cp $dir\\start.sh $dir\\docker-start.sh"
],
"shortcuts": [
[
"kitematic\\Kitematic.exe",
"Kitematic"
],
[
"..\\..\\git\\current\\bin\\bash.exe",
"Docker Quickstart Terminal",
"--login -i $dir\\start.sh",
"docker-quickstart-terminal.ico"
]
],
"env_add_path": "/",
"env_set": {
"DOCKER_TOOLBOX_INSTALL_PATH": "$dir"
},
"notes" : [
"Run the following script to change docker setting",
"docker-machine rm default",
"docker-machine create -d virtualbox --virtualbox-memory=8192 --virtualbox-cpu-count=4 --virtualbox-disk-size=50000 default"
],
"checkver": {
"github": "https://github.com/docker/toolbox",
"re": "/releases/tag/(?:v)?([\\d\\w.-]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/docker/toolbox/releases/download/v$version/DockerToolbox-$version.exe"
}
},
"hash": {
"url": "$baseurl/sha256sum.txt",
"find": "([a-fA-F0-9]{64})\\s+DockerToolbox.exe"
}
}
}