Skip to content

Commit 87349ba

Browse files
committed
Merge branch 'hotfix/1.3.2'
2 parents 3a6f083 + aed3945 commit 87349ba

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
# [1.3.2] - 2021-02-18
4+
### Fixed
5+
- Remove -x bash flag on log-helper tool
6+
37
# [1.3.1] - 2021-01-24
48
### Fixed
59
- Update expired default-ca #30 #29. Thanks to @heidemn
@@ -168,6 +172,7 @@
168172
## 0.1.0 - 2015-07-23
169173
Initial release
170174

175+
[1.3.2]: https://github.com/osixia/docker-light-baseimage/compare/v1.3.1...v1.3.2
171176
[1.3.1]: https://github.com/osixia/docker-light-baseimage/compare/v1.3.0...v1.3.1
172177
[1.3.0]: https://github.com/osixia/docker-light-baseimage/compare/v1.2.0...v1.3.0
173178
[1.2.0]: https://github.com/osixia/docker-light-baseimage/compare/v1.1.2...v1.2.0

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/light-baseimage
2-
VERSION = 1.3.1
2+
VERSION = 1.3.2
33

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

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

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

9-
Latest release: 1.3.1 [Changelog](CHANGELOG.md)
9+
Latest release: 1.3.2 [Changelog](CHANGELOG.md)
1010
| [Docker Hub](https://hub.docker.com/r/osixia/light-baseimage/) 
1111

1212
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.
@@ -150,7 +150,7 @@ In the Dockerfile we are going to:
150150

151151
# Use osixia/light-baseimage
152152
# https://github.com/osixia/docker-light-baseimage
153-
FROM osixia/light-baseimage:1.3.1
153+
FROM osixia/light-baseimage:1.3.2
154154

155155
# Download nginx from apt-get and clean apt-get files
156156
RUN apt-get -y update \
@@ -392,7 +392,7 @@ In the Dockerfile we are going to:
392392

393393
# Use osixia/light-baseimage
394394
# https://github.com/osixia/docker-light-baseimage
395-
FROM osixia/light-baseimage:1.3.1
395+
FROM osixia/light-baseimage:1.3.2
396396

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

594594
# Use osixia/light-baseimage
595595
# https://github.com/osixia/docker-light-baseimage
596-
FROM osixia/light-baseimage:1.3.1
596+
FROM osixia/light-baseimage:1.3.2
597597

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

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

665-
docker run osixia/light-baseimage:1.3.1 --help
665+
docker run osixia/light-baseimage:1.3.2 --help
666666
usage: run [-h] [-e] [-s] [-p] [-f] [-o {startup,process,finish}]
667667
[-c COMMAND [WHEN={startup,process,finish} ...]] [-k]
668668
[--wait-state FILENAME] [--wait-first-startup] [--keep-startup-env]
@@ -773,7 +773,7 @@ If a main command is set for example:
773773
If a main command is set *run tool* launch it otherwise bash is launched.
774774
Example:
775775

776-
docker run -it osixia/light-baseimage:1.3.1
776+
docker run -it osixia/light-baseimage:1.3.2
777777

778778

779779
##### Extra environment variables
@@ -849,8 +849,8 @@ Note this yaml definition:
849849

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

852-
docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/light-baseimage:1.3.1 printenv
853-
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:1.3.1 printenv
852+
docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/light-baseimage:1.3.2 printenv
853+
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/light-baseimage:1.3.2 printenv
854854

855855
### Tests
856856

example/multiple-process-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Use osixia/light-baseimage
22
# https://github.com/osixia/docker-light-baseimage
3-
FROM osixia/light-baseimage:1.3.1
3+
FROM osixia/light-baseimage:1.3.2
44

55
# Install multiple process stack, nginx and php7.0-fpm and clean apt-get files
66
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/add-multiple-process-stack

example/single-process-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Use osixia/light-baseimage
22
# https://github.com/osixia/docker-light-baseimage
3-
FROM osixia/light-baseimage:1.3.1
3+
FROM osixia/light-baseimage:1.3.2
44

55
# Download nginx from apt-get and clean apt-get files
66
RUN apt-get -y update \

image/tool/log-helper

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -ex
1+
#!/bin/bash -e
22

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

0 commit comments

Comments
 (0)