Skip to content
This repository was archived by the owner on Sep 26, 2021. It is now read-only.

Commit 7e1e9bb

Browse files
committed
Bump versions
Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
1 parent 10ddf62 commit 7e1e9bb

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

Dockerfile.osx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,15 @@ RUN curl -fsSL -o /vbox.dmg http://download.virtualbox.org/virtualbox/$VBOX_VERS
2626

2727
# Download the Docker parts
2828

29-
ENV INSTALLER_VERSION 1.9.1c
29+
ENV INSTALLER_VERSION 1.9.1d
3030
ENV DOCKER_VERSION 1.9.1
3131
# RUN curl -fsSL -o /docker https://test.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION
3232
RUN curl -fsSL -o docker https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION
3333
RUN chmod +x /docker
3434

35-
ENV DOCKER_MACHINE_VERSION 0.5.2
36-
RUN curl -fsSL -o /docker-machine.zip https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_darwin-amd64.zip
37-
RUN 7z x /docker-machine.zip && rm -f /docker-machine.zip
38-
RUN chmod +x /docker-machine*
35+
ENV DOCKER_MACHINE_VERSION 0.5.3
36+
RUN curl -fsSL -o /docker-machine https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_darwin-amd64
37+
RUN chmod +x /docker-machine
3938

4039
ENV DOCKER_COMPOSE_VERSION 1.5.2
4140
RUN curl -fsSL -o /docker-compose https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-Darwin-x86_64
@@ -45,7 +44,7 @@ ENV BOOT2DOCKER_ISO_VERSION $DOCKER_VERSION
4544
RUN curl -fsSL -o /boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v$DOCKER_VERSION/boot2docker.iso
4645
# RUN curl -fsSL -o /boot2docker.iso https://github.com/tianon/boot2docker-legacy/releases/download/v$DOCKER_VERSION/boot2docker.iso
4746

48-
ENV KITEMATIC_VERSION 0.9.3
47+
ENV KITEMATIC_VERSION 0.9.4
4948
RUN curl -fsSL -o /kitematic.zip https://github.com/kitematic/kitematic/releases/download/v$KITEMATIC_VERSION/Kitematic-$KITEMATIC_VERSION-Mac.zip
5049

5150
ENV MIXPANEL_TOKEN c306ae65c33d7d09fe3e546f36493a6e
@@ -114,7 +113,7 @@ RUN cd /mpkg/dockermachine.pkg && \
114113
mkdir rootfs && \
115114
cd rootfs && \
116115
mkdir -p usr/local/bin && \
117-
mv /docker-machine* usr/local/bin/ && \
116+
mv /docker-machine usr/local/bin/ && \
118117
ls -al /usr/local/bin/ && \
119118
find . | cpio -o --format odc | gzip -c > ../Payload && \
120119
mkbom . ../Bom && \

Dockerfile.windows

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ RUN cd innosetup && \
1717
wine "./innounp.exe" -e "is-unicode.exe"
1818

1919
# installer components
20-
ENV INSTALLER_VERSION 1.9.1c
20+
ENV INSTALLER_VERSION 1.9.1d
2121
ENV DOCKER_VERSION 1.9.1
22-
ENV DOCKER_MACHINE_VERSION 0.5.2
22+
ENV DOCKER_MACHINE_VERSION 0.5.3
2323
ENV DOCKER_COMPOSE_VERSION 1.5.2
2424
ENV BOOT2DOCKER_ISO_VERSION $DOCKER_VERSION
25-
ENV KITEMATIC_VERSION 0.9.3
25+
ENV KITEMATIC_VERSION 0.9.4
2626
ENV VIRTUALBOX_VERSION 5.0.10
2727
ENV VIRTUALBOX_REVISION 104061
2828
ENV GIT_VERSION 2.5.0
@@ -33,9 +33,7 @@ WORKDIR /bundle
3333
RUN curl -fsSL -o docker.exe "https://get.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
3434
# RUN curl -fsSL -o docker.exe "https://test.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
3535

36-
RUN curl -fsSL -o docker-machine.zip "https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_windows-amd64.zip" && \
37-
unzip docker-machine.zip && \
38-
rm docker-machine.zip
36+
RUN curl -fsSL -o docker-machine.exe "https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_windows-amd64.exe"
3937

4038
RUN curl -fsSL -o docker-compose.exe "https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-Windows-x86_64.exe"
4139

windows/Toolbox.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#define b2dIsoPath "..\bundle\boot2docker.iso"
77
#define dockerCli "..\bundle\docker.exe"
8-
#define dockerMachineCli "..\bundle\docker-machine*.exe"
8+
#define dockerMachineCli "..\bundle\docker-machine.exe"
99
#define dockerComposeCli "..\bundle\docker-compose.exe"
1010
#define kitematic "..\bundle\kitematic"
1111
#define git "..\bundle\Git.exe"

0 commit comments

Comments
 (0)