From b9b22a266f4f11efe04b0db837ceb3fca7b30dad Mon Sep 17 00:00:00 2001 From: Jason Wilder Date: Wed, 7 Aug 2024 10:30:05 -0600 Subject: [PATCH] Update README.md for v0.8.0 --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 77abe86..a9849d8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -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) +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) ============= 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 Download the latest version in your container: -* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-linux-amd64-v0.7.0.tar.gz) -* [alpine/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-alpine-linux-amd64-v0.7.0.tar.gz) -* [darwin/amd64](https://github.com/jwilder/dockerize/releases/download/v0.7.0/dockerize-darwin-amd64-v0.7.0.tar.gz) +* [linux/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-linux-amd64-v0.8.0.tar.gz) +* [alpine/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-alpine-linux-amd64-v0.8.0.tar.gz) +* [darwin/amd64](https://github.com/jwilder/dockerize/releases/download/v0.8.0/dockerize-darwin-amd64-v0.8.0.tar.gz) ### Docker Base Image @@ -46,7 +46,7 @@ ENTRYPOINT dockerize ... ### Ubuntu Images ``` Dockerfile -ENV DOCKERIZE_VERSION v0.7.0 +ENV DOCKERIZE_VERSION v0.8.0 RUN apt-get update \ && apt-get install -y wget \ @@ -58,7 +58,7 @@ RUN apt-get update \ ### For Alpine Images: ``` Dockerfile -ENV DOCKERIZE_VERSION v0.7.0 +ENV DOCKERIZE_VERSION v0.8.0 RUN apk update --no-cache \ && apk add --no-cache wget openssl \ @@ -163,7 +163,7 @@ variables within a template with `.Env`. {{ .Env.PATH }} is my path ``` -There are a few built in functions as well: +There are a few built-in functions as well: * `default $var $default` - Returns a default value for one that does not exist. `{{ default .Env.VERSION "0.1.2" }}` * `contains $map $key` - Returns true if a string is within another string