Run update.sh

This commit is contained in:
Docker Library Bot
2015-12-15 16:26:14 -08:00
parent ff504cf077
commit f9f92c1b89
4 changed files with 10 additions and 14 deletions

View File

@@ -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)

View File

@@ -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)

View File

@@ -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%%

View File

@@ -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.