Docker 18.03.0-ce (#2235)

* Docker CLI via Docker Toolbox

* Remove notes

* Add shortcut to Kitematic
This commit is contained in:
Mathias Hermansson 2018-05-03 16:48:55 +02:00 committed by Richard Kuhnt
parent 4022eec08b
commit db358fdc57

View File

@ -1,41 +1,39 @@
{ {
"version": "17.05.0-ce", "version": "18.03.0-ce",
"license": "Apache-2.0", "license": "Apache-2.0",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://get.docker.com/builds/Windows/x86_64/docker-17.05.0-ce.zip", "url": "https://github.com/docker/toolbox/releases/download/v18.03.0-ce/DockerToolbox-18.03.0-ce.exe",
"hash": "cbb0b47b511023a98dd0c83d76c1f30b315b8381b85b67be355eca4748229031" "hash": "7c412e867e4708ec1b36005a217161131a21430a0ef0b0db3591218ec9ec5091"
},
"32bit": {
"url": "https://get.docker.com/builds/Windows/i386/docker-17.05.0-ce.zip",
"hash": "99820746a362466700718d33ee727b9aea993b9c2e05fb2c53ed606e9f6780f1"
} }
}, },
"homepage": "https://docker.com", "homepage": "https://docker.com",
"extract_dir": "docker", "innosetup": true,
"post_install": "rm -r \"$dir\\installers\"",
"bin": [ "bin": [
"docker.exe" "docker.exe",
"docker-compose.exe",
"docker-machine.exe"
],
"shortcuts": [
[
"kitematic\\Kitematic.exe",
"Kitematic"
]
], ],
"checkver": { "checkver": {
"url": "https://github.com/docker/docker/releases/latest", "github": "https://github.com/docker/toolbox",
"re": "/releases/tag/(?:v)?([\\d\\w.-]+)" "re": "/releases/tag/(?:v)?([\\d\\w.-]+)"
}, },
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://get.docker.com/builds/Windows/x86_64/docker-$version.zip" "url": "https://github.com/docker/toolbox/releases/download/v$version/DockerToolbox-$version.exe"
},
"32bit": {
"url": "https://get.docker.com/builds/Windows/i386/docker-$version.zip"
} }
},
"hash": {
"url": "$baseurl/sha256sum.txt",
"find": "([a-fA-F0-9]{64})\\s+DockerToolbox.exe"
} }
}, }
"notes": [
"This is the docker client only. Until the docker daemon can run natively",
"on Windows you will need a Virtual Machine such as Boot2Docker or",
"Docker Machine",
"",
"Boot2Docker: https://github.com/boot2docker/windows-installer/releases/",
"Docker Machine: https://docs.docker.com/machine/"
]
} }