Skip to content

Commit

Permalink
Merge branch 'hotfix/1.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandGouny committed Feb 18, 2021
2 parents 3a6f083 + aed3945 commit 87349ba
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# [1.3.2] - 2021-02-18
### Fixed
- Remove -x bash flag on log-helper tool

# [1.3.1] - 2021-01-24
### Fixed
- Update expired default-ca #30 #29. Thanks to @heidemn
Expand Down Expand Up @@ -168,6 +172,7 @@
## 0.1.0 - 2015-07-23
Initial release

[1.3.2]: https://github.com/osixia/docker-light-baseimage/compare/v1.3.1...v1.3.2
[1.3.1]: https://github.com/osixia/docker-light-baseimage/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/osixia/docker-light-baseimage/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/osixia/docker-light-baseimage/compare/v1.1.2...v1.2.0
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 = 1.3.1
VERSION = 1.3.2

.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: 1.3.1 [Changelog](CHANGELOG.md)
Latest release: 1.3.2 [Changelog](CHANGELOG.md)
| [Docker Hub](https://hub.docker.com/r/osixia/light-baseimage/) 

A **Debian 10 (Buster)** 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 @@ -150,7 +150,7 @@ In the Dockerfile we are going to:

# Use osixia/light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/light-baseimage:1.3.1
FROM osixia/light-baseimage:1.3.2

# Download nginx from apt-get and clean apt-get files
RUN apt-get -y 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:1.3.1
FROM osixia/light-baseimage:1.3.2

# 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 @@ -593,7 +593,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:1.3.1
FROM osixia/light-baseimage:1.3.2

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

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

docker run osixia/light-baseimage:1.3.1 --help
docker run osixia/light-baseimage:1.3.2 --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 @@ -773,7 +773,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:1.3.1
docker run -it osixia/light-baseimage:1.3.2


##### Extra environment variables
Expand Down Expand Up @@ -849,8 +849,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:1.3.1 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:1.3.1 printenv
docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/light-baseimage:1.3.2 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:1.3.2 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:1.3.1
FROM osixia/light-baseimage:1.3.2

# 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:1.3.1
FROM osixia/light-baseimage:1.3.2

# Download nginx from apt-get and clean apt-get files
RUN apt-get -y update \
Expand Down
2 changes: 1 addition & 1 deletion image/tool/log-helper
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -e

# log helper base on environment variable CONTAINER_LOG_LEVEL
# CONTAINER_LOG_LEVEL environment variable is set by run tool based on --log-level argument (info by default)
Expand Down

0 comments on commit 87349ba

Please sign in to comment.