Skip to content

Commit

Permalink
docs: v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandGouny committed Mar 13, 2021
1 parent 40ddebf commit 98a513d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### Fixed
- log-level broken pipe

## [0.1.8] - 2021-02-19
## [0.1.9] - 2021-02-19
### Fixed
- Remove -x bash flag on log-helper tool

Expand Down Expand Up @@ -66,8 +66,8 @@
## 0.1.0
Initial release

[0.1.9]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.8...alpine-v0.1.9
[0.1.8]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.7...alpine-v0.1.8
[0.1.9]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.9...alpine-v0.1.9
[0.1.9]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.7...alpine-v0.1.9
[0.1.7]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.6...alpine-v0.1.7
[0.1.6]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.5...alpine-v0.1.6
[0.1.5]: https://github.com/osixia/docker-light-baseimage/compare/alpine-v0.1.4...alpine-v0.1.5
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = osixia/light-baseimage
VERSION = alpine-0.1.8
VERSION = alpine-0.1.9

.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[hub]: https://hub.docker.com/r/osixia/light-baseimage/

Latest release: 0.1.8 [Changelog](CHANGELOG.md)
Latest release: 0.1.9 [Changelog](CHANGELOG.md)
| [Docker Hub](https://hub.docker.com/r/osixia/light-baseimage/) 

An **Alpine 3.12** based docker image to build reliable image quickly. This image provide a simple opinionated solution to build multiple or single process image with minimum of layers and an optimized build.
Expand Down Expand Up @@ -148,7 +148,7 @@ In the Dockerfile we are going to:

# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:alpine-0.1.8
FROM osixia/light-baseimage:alpine-0.1.9

# Download nginx from apk and clean apk files
RUN apk update \
Expand Down Expand Up @@ -392,7 +392,7 @@ In the Dockerfile we are going to:

# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:alpine-0.1.8
FROM osixia/light-baseimage:alpine-0.1.9

# Install multiple process stack, nginx and php7.0-fpm and clean apt-get files
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/add-multiple-process-stack
Expand Down Expand Up @@ -611,7 +611,7 @@ Here simple Dockerfile example how to add a service-available to an image:

# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:alpine-0.1.8
FROM osixia/light-baseimage:alpine-0.1.9

# Add cfssl and cron service-available
# https://github.com/osixia/docker-light-baseimage/blob/alpine/image/tool/add-service-available
Expand Down Expand Up @@ -673,7 +673,7 @@ What it does:

*Run tool* takes several options, to list them:

docker run osixia/light-baseimage:alpine-0.1.8 --help
docker run osixia/light-baseimage:alpine-0.1.9 --help
usage: run [-h] [-e] [-s] [-p] [-f] [-o {startup,process,finish}]
[-c COMMAND [WHEN={startup,process,finish} ...]] [-k]
[--wait-state FILENAME] [--wait-first-startup] [--keep-startup-env]
Expand Down Expand Up @@ -784,7 +784,7 @@ If a main command is set for example:
If a main command is set *run tool* launch it otherwise bash is launched.
Example:

docker run -it osixia/light-baseimage:alpine-0.1.8
docker run -it osixia/light-baseimage:alpine-0.1.9


##### Extra environment variables
Expand Down Expand Up @@ -860,8 +860,8 @@ Note this yaml definition:

Can also be set by command line converted in python or json:

docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/light-baseimage:alpine-0.1.8 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:alpine-0.1.8 printenv
docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/light-baseimage:alpine-0.1.9 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:alpine-0.1.9 printenv

### Tests

Expand Down
2 changes: 1 addition & 1 deletion example/multiple-process-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:alpine-0.1.8
FROM osixia/light-baseimage:alpine-0.1.9

# Install multiple process stack, nginx and php7.0-fpm and clean apt-get files
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/add-multiple-process-stack
Expand Down
2 changes: 1 addition & 1 deletion example/single-process-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:alpine-0.1.8
FROM osixia/light-baseimage:alpine-0.1.9

# Download nginx from apk and clean apk files
RUN apk update \
Expand Down

0 comments on commit 98a513d

Please sign in to comment.