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 )
2
2
=============
3
3
4
4
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
28
28
29
29
Download the latest version in your container:
30
30
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 )
34
34
35
35
36
36
### Docker Base Image
@@ -46,7 +46,7 @@ ENTRYPOINT dockerize ...
46
46
### Ubuntu Images
47
47
48
48
``` Dockerfile
49
- ENV DOCKERIZE_VERSION v0.7 .0
49
+ ENV DOCKERIZE_VERSION v0.8 .0
50
50
51
51
RUN apt-get update \
52
52
&& apt-get install -y wget \
@@ -58,7 +58,7 @@ RUN apt-get update \
58
58
### For Alpine Images:
59
59
60
60
``` Dockerfile
61
- ENV DOCKERIZE_VERSION v0.7 .0
61
+ ENV DOCKERIZE_VERSION v0.8 .0
62
62
63
63
RUN apk update --no-cache \
64
64
&& apk add --no-cache wget openssl \
@@ -163,7 +163,7 @@ variables within a template with `.Env`.
163
163
{{ .Env.PATH }} is my path
164
164
```
165
165
166
- There are a few built in functions as well:
166
+ There are a few built- in functions as well:
167
167
168
168
* ` default $var $default ` - Returns a default value for one that does not exist. ` {{ default .Env.VERSION "0.1.2" }} `
169
169
* ` contains $map $key ` - Returns true if a string is within another string
0 commit comments