|
6 | 6 |
|
7 | 7 | [hub]: https://hub.docker.com/r/osixia/light-baseimage/
|
8 | 8 |
|
9 |
| -Latest release: 1.3.1 [Changelog](CHANGELOG.md) |
| 9 | +Latest release: 1.3.2 [Changelog](CHANGELOG.md) |
10 | 10 | | [Docker Hub](https://hub.docker.com/r/osixia/light-baseimage/)
|
11 | 11 |
|
12 | 12 | 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:
|
150 | 150 |
|
151 | 151 | # Use osixia/light-baseimage
|
152 | 152 | # https://github.com/osixia/docker-light-baseimage
|
153 |
| - FROM osixia/light-baseimage:1.3.1 |
| 153 | + FROM osixia/light-baseimage:1.3.2 |
154 | 154 |
|
155 | 155 | # Download nginx from apt-get and clean apt-get files
|
156 | 156 | RUN apt-get -y update \
|
@@ -392,7 +392,7 @@ In the Dockerfile we are going to:
|
392 | 392 |
|
393 | 393 | # Use osixia/light-baseimage
|
394 | 394 | # https://github.com/osixia/docker-light-baseimage
|
395 |
| - FROM osixia/light-baseimage:1.3.1 |
| 395 | + FROM osixia/light-baseimage:1.3.2 |
396 | 396 |
|
397 | 397 | # Install multiple process stack, nginx and php7.0-fpm and clean apt-get files
|
398 | 398 | # 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:
|
593 | 593 |
|
594 | 594 | # Use osixia/light-baseimage
|
595 | 595 | # https://github.com/osixia/docker-light-baseimage
|
596 |
| - FROM osixia/light-baseimage:1.3.1 |
| 596 | + FROM osixia/light-baseimage:1.3.2 |
597 | 597 |
|
598 | 598 | # Add cfssl and cron service-available
|
599 | 599 | # https://github.com/osixia/docker-light-baseimage/blob/stable/image/tool/add-service-available
|
@@ -662,7 +662,7 @@ What it does:
|
662 | 662 |
|
663 | 663 | *Run tool* takes several options, to list them:
|
664 | 664 |
|
665 |
| - docker run osixia/light-baseimage:1.3.1 --help |
| 665 | + docker run osixia/light-baseimage:1.3.2 --help |
666 | 666 | usage: run [-h] [-e] [-s] [-p] [-f] [-o {startup,process,finish}]
|
667 | 667 | [-c COMMAND [WHEN={startup,process,finish} ...]] [-k]
|
668 | 668 | [--wait-state FILENAME] [--wait-first-startup] [--keep-startup-env]
|
@@ -773,7 +773,7 @@ If a main command is set for example:
|
773 | 773 | If a main command is set *run tool* launch it otherwise bash is launched.
|
774 | 774 | Example:
|
775 | 775 |
|
776 |
| - docker run -it osixia/light-baseimage:1.3.1 |
| 776 | + docker run -it osixia/light-baseimage:1.3.2 |
777 | 777 |
|
778 | 778 |
|
779 | 779 | ##### Extra environment variables
|
@@ -849,8 +849,8 @@ Note this yaml definition:
|
849 | 849 |
|
850 | 850 | Can also be set by command line converted in python or json:
|
851 | 851 |
|
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 |
854 | 854 |
|
855 | 855 | ### Tests
|
856 | 856 |
|
|
0 commit comments