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

Commit b6f08f4

Browse files
committed
Bump versions
Signed-off-by: Jeffrey Morgan <[email protected]>
1 parent c2f2f53 commit b6f08f4

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Dockerfile.osx

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

2727
# Download the Docker parts
2828

29-
ENV DOCKER_VERSION 1.9.0-rc4
30-
RUN curl -fsSL -o /docker https://test.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION
29+
ENV INSTALLER_VERSION 1.9.0
30+
ENV DOCKER_VERSION 1.9.0
31+
# RUN curl -fsSL -o /docker https://test.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION
32+
RUN curl -fsSL -o docker https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION
3133
RUN chmod +x /docker
3234

33-
ENV DOCKER_MACHINE_VERSION 0.5.0-rc4
35+
ENV DOCKER_MACHINE_VERSION 0.5.0
3436
RUN curl -fsSL -o /docker-machine.zip https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_darwin-amd64.zip
3537
RUN 7z x /docker-machine.zip && rm -f /docker-machine.zip
3638
RUN chmod +x /docker-machine*
3739

38-
ENV DOCKER_COMPOSE_VERSION 1.5.0rc3
40+
ENV DOCKER_COMPOSE_VERSION 1.5.0
3941
RUN curl -fsSL -o /docker-compose https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-Darwin-x86_64
4042
RUN chmod +x /docker-compose
4143

4244
ENV BOOT2DOCKER_ISO_VERSION $DOCKER_VERSION
43-
# RUN curl -fsSL -o /boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v$DOCKER_VERSION/boot2docker.iso
44-
RUN curl -fsSL -o /boot2docker.iso https://github.com/tianon/boot2docker-legacy/releases/download/v$DOCKER_VERSION/boot2docker.iso
45+
RUN curl -fsSL -o /boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v$DOCKER_VERSION/boot2docker.iso
46+
# RUN curl -fsSL -o /boot2docker.iso https://github.com/tianon/boot2docker-legacy/releases/download/v$DOCKER_VERSION/boot2docker.iso
4547

4648
ENV KITEMATIC_VERSION 0.9.3
4749
RUN curl -fsSL -o /kitematic.zip https://github.com/kitematic/kitematic/releases/download/v$KITEMATIC_VERSION/Kitematic-$KITEMATIC_VERSION-Mac.zip
4850

49-
ENV INSTALLER_VERSION 1.9.0-rc4
50-
5151
ENV MIXPANEL_TOKEN c306ae65c33d7d09fe3e546f36493a6e
5252

5353
# Extract the VirtualBox .pkg

Dockerfile.windows

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

1919
# installer components
20-
ENV INSTALLER_VERSION 1.9.0-rc4
21-
ENV DOCKER_VERSION 1.9.0-rc4
22-
ENV DOCKER_MACHINE_VERSION 0.5.0-rc4
23-
ENV DOCKER_COMPOSE_VERSION 1.5.0rc3
20+
ENV INSTALLER_VERSION 1.9.0
21+
ENV DOCKER_VERSION 1.9.0
22+
ENV DOCKER_MACHINE_VERSION 0.5.0
23+
ENV DOCKER_COMPOSE_VERSION 1.5.0
2424
ENV BOOT2DOCKER_ISO_VERSION $DOCKER_VERSION
2525
ENV KITEMATIC_VERSION 0.9.3
2626
ENV VIRTUALBOX_VERSION 5.0.8
@@ -30,17 +30,17 @@ ENV MIXPANEL_TOKEN c306ae65c33d7d09fe3e546f36493a6e
3030

3131
RUN mkdir /bundle
3232
WORKDIR /bundle
33-
# RUN curl -fsSL -o docker.exe "https://get.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
34-
RUN curl -fsSL -o docker.exe "https://test.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
33+
RUN curl -fsSL -o docker.exe "https://get.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
34+
# RUN curl -fsSL -o docker.exe "https://test.docker.com/builds/Windows/x86_64/docker-$DOCKER_VERSION.exe"
3535

3636
RUN curl -fsSL -o docker-machine.zip "https://github.com/docker/machine/releases/download/v$DOCKER_MACHINE_VERSION/docker-machine_windows-amd64.zip" && \
3737
unzip docker-machine.zip && \
3838
rm docker-machine.zip
3939

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

42-
# RUN curl -fsSL -o boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v$BOOT2DOCKER_ISO_VERSION/boot2docker.iso
43-
RUN curl -fsSL -o boot2docker.iso https://github.com/tianon/boot2docker-legacy/releases/download/v$BOOT2DOCKER_ISO_VERSION/boot2docker.iso
42+
RUN curl -fsSL -o boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v$BOOT2DOCKER_ISO_VERSION/boot2docker.iso
43+
# RUN curl -fsSL -o boot2docker.iso https://github.com/tianon/boot2docker-legacy/releases/download/v$BOOT2DOCKER_ISO_VERSION/boot2docker.iso
4444

4545
RUN curl -fsSL -o kitematic.zip "https://github.com/kitematic/kitematic/releases/download/v$KITEMATIC_VERSION/Kitematic-$KITEMATIC_VERSION-Windows-Alpha.zip" && \
4646
mkdir kitematic && \

0 commit comments

Comments
 (0)