Skip to content

Commit b9b22a2

Browse files
committed
Update README.md for v0.8.0
1 parent 5330d84 commit b9b22a2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dockerize ![version v0.7.0](https://img.shields.io/badge/version-v0.7.0-brightgreen.svg) ![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
1+
dockerize ![version v0.8.0](https://img.shields.io/badge/version-v0.8.0-brightgreen.svg) ![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
22
=============
33

44
Utility to simplify running applications in docker containers.
@@ -28,9 +28,9 @@ See [A Simple Way To Dockerize Applications](http://jasonwilder.com/blog/2014/10
2828

2929
Download the latest version in your container:
3030

31-
* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-linux-amd64-v0.7.0.tar.gz)
32-
* [alpine/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-alpine-linux-amd64-v0.7.0.tar.gz)
33-
* [darwin/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-darwin-amd64-v0.7.0.tar.gz)
31+
* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-linux-amd64-v0.8.0.tar.gz)
32+
* [alpine/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-alpine-linux-amd64-v0.8.0.tar.gz)
33+
* [darwin/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-darwin-amd64-v0.8.0.tar.gz)
3434

3535

3636
### Docker Base Image
@@ -46,7 +46,7 @@ ENTRYPOINT dockerize ...
4646
### Ubuntu Images
4747

4848
``` Dockerfile
49-
ENV DOCKERIZE_VERSION v0.7.0
49+
ENV DOCKERIZE_VERSION v0.8.0
5050

5151
RUN apt-get update \
5252
&& apt-get install -y wget \
@@ -58,7 +58,7 @@ RUN apt-get update \
5858
### For Alpine Images:
5959

6060
``` Dockerfile
61-
ENV DOCKERIZE_VERSION v0.7.0
61+
ENV DOCKERIZE_VERSION v0.8.0
6262

6363
RUN apk update --no-cache \
6464
&& apk add --no-cache wget openssl \
@@ -163,7 +163,7 @@ variables within a template with `.Env`.
163163
{{ .Env.PATH }} is my path
164164
```
165165

166-
There are a few built in functions as well:
166+
There are a few built-in functions as well:
167167

168168
* `default $var $default` - Returns a default value for one that does not exist. `{{ default .Env.VERSION "0.1.2" }}`
169169
* `contains $map $key` - Returns true if a string is within another string

0 commit comments

Comments
 (0)