mirror of
/repos/baseimage-docker.git
synced 2025-12-30 08:01:31 +01:00
Merge branch 'next'
This commit is contained in:
commit
6052c7a3e7
@ -1,3 +1,8 @@
|
||||
## 0.9.18 (release date: 2015-12-08)
|
||||
|
||||
* The latest OpenSSL updates have been pulled in. This fixes [CVE-2015-3193](https://www.openssl.org/news/secadv/20151203.txt) and a few others. Upgrading is strongly recommended.
|
||||
|
||||
|
||||
## 0.9.17 (release date: 2015-07-15)
|
||||
|
||||
* The latest OpenSSL updates have been pulled in. This fixes [CVE-2015-1793](http://openssl.org/news/secadv_20150709.txt). Upgrading is strongly recommended.
|
||||
|
||||
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
NAME = phusion/baseimage
|
||||
VERSION = 0.9.17
|
||||
VERSION = 0.9.18
|
||||
|
||||
.PHONY: all build test tag_latest release ssh
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ ID=`docker run -d -v $PWD/test:/test $NAME:$VERSION /sbin/my_init --enable-insec
|
||||
sleep 1
|
||||
|
||||
echo " --> Obtaining IP"
|
||||
IP=`docker inspect $ID | grep IPAddress | sed -e 's/.*: "//; s/".*//'`
|
||||
IP=`docker inspect -f "{{ .NetworkSettings.IPAddress }}" "$ID"`
|
||||
if [[ "$IP" = "" ]]; then
|
||||
abort "Unable to obtain container IP"
|
||||
fi
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user