From f9f92c1b895337cd3dc5fcba4d62dff6752f3777 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 15 Dec 2015 16:26:14 -0800 Subject: [PATCH] Run update.sh --- centos/README.md | 3 ++- hello-world/README.md | 4 ++-- hello-world/content.md | 4 ++-- irssi/README.md | 13 ++++--------- 4 files changed, 10 insertions(+), 14 deletions(-) diff --git a/centos/README.md b/centos/README.md index dd877e8b..ec8aa233 100644 --- a/centos/README.md +++ b/centos/README.md @@ -1,8 +1,9 @@ # Supported tags and respective `Dockerfile` links -- [`latest`, `centos7`, `7` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/281559d6864e84fe365ef4007d4db27c197b50fb/docker/Dockerfile) +- [`latest`, `centos7`, `7` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/93117754c2a3de3c91ab563022f592e7940d293a/docker/Dockerfile) - [`centos6`, `6` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/20732d1bb34a9aba45c1c6f41576ed6bf3d8c619/docker/Dockerfile) - [`centos5`, `5` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/c8d1a81b0516bca0f20434be8d0fac4f7d58a04a/docker/Dockerfile) +- [`centos7.2.1511`, `7.2.1511` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/a3c59bd4e98a7f9c063d993955c8ec19c5b1ceff/docker/Dockerfile) - [`centos7.1.1503`, `7.1.1503` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/bc561dfdd671d612dbb9f92e7e17dd8009befc44/docker/Dockerfile) - [`centos7.0.1406`, `7.0.1406` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/f1d1e0bd83baef08e257da50e6fb446e4dd1b90c/docker/Dockerfile) - [`centos6.7`, `6.7` (*docker/Dockerfile*)](https://github.com/CentOS/sig-cloud-instance-images/blob/d0b72df83f49da844f88aabebe3826372f675370/docker/Dockerfile) diff --git a/hello-world/README.md b/hello-world/README.md index 2f4dfb5c..24a88cc7 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -33,8 +33,8 @@ For more examples and ideas, visit: $ docker images hello-world -REPOSITORY TAG IMAGE ID VIRTUAL SIZE -hello-world latest 0a6ba66e537a 960 B +REPOSITORY TAG IMAGE ID SIZE +hello-world latest 690ed74de00f 960 B ``` ![logo](https://raw.githubusercontent.com/docker-library/docs/master/hello-world/logo.png) diff --git a/hello-world/content.md b/hello-world/content.md index 5a558c72..a1bdb089 100644 --- a/hello-world/content.md +++ b/hello-world/content.md @@ -25,8 +25,8 @@ For more examples and ideas, visit: $ docker images hello-world -REPOSITORY TAG IMAGE ID VIRTUAL SIZE -hello-world latest 0a6ba66e537a 960 B +REPOSITORY TAG IMAGE ID SIZE +hello-world latest 690ed74de00f 960 B ``` %%LOGO%% diff --git a/irssi/README.md b/irssi/README.md index cea678da..cd810ffb 100644 --- a/irssi/README.md +++ b/irssi/README.md @@ -26,30 +26,25 @@ On a Linux system, build and launch a container named `my-running-irssi` like th ```console $ docker run -it --name my-running-irssi -e TERM -u $(id -u):$(id -g) \ + --log-driver=none \ -v $HOME/.irssi:/home/user/.irssi:ro \ -v /etc/localtime:/etc/localtime:ro \ irssi ``` +We specify `--log-driver=none` to avoid storing useless interactive terminal data. + On a Mac OS X system, run the same image using: ```console $ docker run -it --name my-running-irssi -e TERM -u $(id -u):$(id -g) \ + --log-driver=none \ -v $HOME/.irssi:/home/user/.irssi:ro \ irssi ``` You omit `/etc/localtime` on Mac OS X because `boot2docker` doesn't use this file. -Of course, you can name your image anything you like. In Docker 1.5 you can also use the `--read-only` mount flag. For example, on Linux: - -```console -$ docker run -it --name my-running-irssi -e TERM -u $(id -u):$(id -g) \ - --read-only -v $HOME/.irssi:/home/user/.irssi \ - -v /etc/localtime:/etc/localtime \ - irssi -``` - # License View [license information](https://github.com/irssi/irssi/blob/master/COPYING) for the software contained in this image.