Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandGouny committed May 2, 2016
1 parent eb05ebf commit be9afdb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.1.6
- Periodic update of ubuntu baseimage and packages

## 0.1.5
- Fix --copy-service error if /container/run/service already exists
- Fix /container/run/startup.sh file detection if no other startup files exists
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/ubuntu-light-baseimage
VERSION = 0.1.5
VERSION = 0.1.6

.PHONY: all build build-nocache test tag_latest release

Expand Down
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

[![Docker Pulls](https://img.shields.io/docker/pulls/osixia/ubuntu-light-baseimage.svg)][hub]
[![Docker Stars](https://img.shields.io/docker/stars/osixia/ubuntu-light-baseimage.svg)][hub]
[![Image Size](https://img.shields.io/imagelayers/image-size/osixia/ubuntu-light-baseimage/latest.svg)](https://imagelayers.io/?images=osixia/ubuntu-light-baseimage:latest)
[![Image Layers](https://img.shields.io/imagelayers/layers/osixia/ubuntu-light-baseimage/latest.svg)](https://imagelayers.io/?images=osixia/ubuntu-light-baseimage:latest)

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

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

A Ubuntu Trusty (14:04) based docker image to help you 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 @@ -142,7 +140,7 @@ In the Dockerfile we are going to:

# Use osixia/ubuntu-light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/ubuntu-light-baseimage:0.1.5
FROM osixia/ubuntu-light-baseimage:0.1.6
MAINTAINER Your Name <[email protected]>

# Download nginx from apt-get and clean apt-get files
Expand Down Expand Up @@ -385,7 +383,7 @@ In the Dockerfile we are going to:

# Use osixia/ubuntu-light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/ubuntu-light-baseimage:0.1.5
FROM osixia/ubuntu-light-baseimage:0.1.6
MAINTAINER Your Name <[email protected]>

# Install multiple process stack, nginx and php5-fpm and clean apt-get files
Expand Down Expand Up @@ -578,7 +576,7 @@ Here simple Dockerfile example how to add a service-available to an image:

# Use osixia/ubuntu-light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/ubuntu-light-baseimage:0.1.5
FROM osixia/ubuntu-light-baseimage:0.1.6
MAINTAINER Your Name <[email protected]>

# Add cfssl and cron service-available
Expand Down Expand Up @@ -642,7 +640,7 @@ What it does:

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

docker run osixia/light-baseimage:0.1.5 --help
docker run osixia/light-baseimage:0.1.6 --help
usage: run [-h] [-e] [-s] [-p] [-k] [--copy-service] [--keep-startup-env]
[--keepalived] [-l {none,error,warning,info,debug,trace}]
[MAIN_COMMAND [MAIN_COMMAND ...]]
Expand Down Expand Up @@ -727,7 +725,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/ubuntu-light-baseimage:0.1.5
docker run -it osixia/ubuntu-light-baseimage:0.1.6


##### Extra environment variables
Expand Down Expand Up @@ -803,8 +801,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/ubuntu-light-baseimage:0.1.5 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/ubuntu-light-baseimage:0.1.5 printenv
docker run -it --env FRUITS="#PYTHON2BASH:['orange','apple']" osixia/ubuntu-light-baseimage:0.1.6 printenv
docker run -it --env FRUITS="#JSON2BASH:[\"orange\",\"apple\"]" osixia/ubuntu-light-baseimage:0.1.6 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/ubuntu-light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/ubuntu-light-baseimage:0.1.5
FROM osixia/ubuntu-light-baseimage:0.1.6
MAINTAINER Your Name <[email protected]>

# Install multiple process stack, nginx and php5-fpm and clean apt-get files
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/ubuntu-light-baseimage
# https://github.com/osixia/docker-light-baseimage
FROM osixia/ubuntu-light-baseimage:0.1.5
FROM osixia/ubuntu-light-baseimage:0.1.6
MAINTAINER Your Name <[email protected]>

# Download nginx from apt-get and clean apt-get files
Expand Down

0 comments on commit be9afdb

Please sign in to comment.