Skip to content

Commit

Permalink
Update v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilder committed Apr 4, 2017
1 parent fe57903 commit 3cf2fbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER Jason Wilder <[email protected]>

RUN apk -U add openssl

ENV VERSION v0.3.0
ENV VERSION v0.4.0
ENV DOWNLOAD_URL https://github.com/jwilder/dockerize/releases/download/$VERSION/dockerize-alpine-linux-amd64-$VERSION.tar.gz

RUN wget -qO- $DOWNLOAD_URL | tar xvz -C /usr/local/bin
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dockerize ![version v0.3.0](https://img.shields.io/badge/version-v0.3.0-brightgreen.svg) ![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
dockerize ![version v0.4.0](https://img.shields.io/badge/version-v0.4.0-brightgreen.svg) ![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
=============

Utility to simplify running applications in docker containers.
Expand Down Expand Up @@ -29,14 +29,14 @@ See [A Simple Way To Dockerize Applications](http://jasonwilder.com/blog/2014/10

Download the latest version in your container:

* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.3.0/dockerize-linux-amd64-v0.3.0.tar.gz)
* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.4.0/dockerize-linux-amd64-v0.4.0.tar.gz)

For Ubuntu Images:

``` Dockerfile
RUN apt-get update && apt-get install -y wget

ENV DOCKERIZE_VERSION v0.3.0
ENV DOCKERIZE_VERSION v0.4.0
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
Expand Down

0 comments on commit 3cf2fbe

Please sign in to comment.