From 4163e6437433945b8e60a793d80f07263a00d74c Mon Sep 17 00:00:00 2001 From: Nathan Griffith Date: Sat, 27 Feb 2016 12:29:52 -0500 Subject: [PATCH] Bump 'docker-compose' from 1.6.0 to 1.6.2 Also use 'pre_install' hook to rename download to 'docker-compose.exe' (This mirrors the way the 'docker-machine' package is set up) --- docker-compose.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docker-compose.json b/docker-compose.json index ac059d4d88..9d37ce4680 100644 --- a/docker-compose.json +++ b/docker-compose.json @@ -1,14 +1,15 @@ { - "version": "1.6.0", - "license": "https://github.com/docker/compose/blob/master/LICENSE", + "homepage": "https://github.com/docker/compose", + "version": "1.6.2", + "license": "Apache", "architecture": { "64bit": { - "url": "https://github.com/docker/compose/releases/download/1.6.0/docker-compose-Windows-x86_64.exe", - "hash": "ce02d15e3bbc247be75969f746e7cd142547b1079c8f0f8d2b85c5af3ecdcd32" + "url": "https://github.com/docker/compose/releases/download/1.6.2/docker-compose-Windows-x86_64.exe", + "hash": "0c24808a27db78d5245736ae3ca29834a276f5ef2cb9597164825c1cc878fac8" } }, - "homepage": "https://docker.com", + "pre_install": "Rename-Item @(Get-ChildItem $dir\\docker-compose-*.exe)[0] $dir\\docker-compose.exe", "bin": [ - ["docker-compose-Windows-x86_64.exe", "docker-compose"] + ["docker-compose.exe", "docker-compose"] ] }