Run update.sh

This commit is contained in:
Docker Library Bot 2015-11-24 11:03:52 -08:00
parent 0a03561512
commit d6323cba4e
2 changed files with 4 additions and 3 deletions

View File

@ -151,10 +151,10 @@ The Docker documentation is a good starting point for understanding the differen
2. Start your `cassandra` container like this:
```console
$ docker run --name some-cassandra -v /my/own/datadir:/var/lib/cassandra/data -d cassandra:tag
$ docker run --name some-cassandra -v /my/own/datadir:/var/lib/cassandra -d cassandra:tag
```
The `-v /my/own/datadir:/var/lib/cassandra/data` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/cassandra/data` inside the container, where Cassandra by default will write its data files.
The `-v /my/own/datadir:/var/lib/cassandra` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/var/lib/cassandra` inside the container, where Cassandra by default will write its data files.
Note that users on host systems with SELinux enabled may see issues with this. The current workaround is to assign the relevant SELinux policy type to the new data directory so that the container will be allowed to access it:

View File

@ -2,7 +2,8 @@
- [`1.4.5-1-a2bacae`, `1.4.5-1`, `1.4.5`, `1.4` (*1.4/Dockerfile*)](https://github.com/docker-library/logstash/blob/0b9134f8c83f58120bee00efd41f4b5867930016/1.4/Dockerfile)
- [`1.5.5-1`, `1.5.5`, `1.5`, `1` (*1.5/Dockerfile*)](https://github.com/docker-library/logstash/blob/a250673f3f3a6dec5176041f805d41d6e7fd90b0/1.5/Dockerfile)
- [`2.0.0-1`, `2.0.0`, `2.0`, `2`, `latest` (*2.0/Dockerfile*)](https://github.com/docker-library/logstash/blob/c218eb120f20b4c8f19e2afb235ff012a5173794/2.0/Dockerfile)
- [`2.0.0-1`, `2.0.0`, `2.0` (*2.0/Dockerfile*)](https://github.com/docker-library/logstash/blob/c218eb120f20b4c8f19e2afb235ff012a5173794/2.0/Dockerfile)
- [`2.1.0-1`, `2.1.0`, `2.1`, `2`, `latest` (*2.1/Dockerfile*)](https://github.com/docker-library/logstash/blob/a50f6cf48fe5c16ba2c628fffa03733732135e55/2.1/Dockerfile)
For more information about this image and its history, please see [the relevant manifest file (`library/logstash`)](https://github.com/docker-library/official-images/blob/master/library/logstash). This image is updated via pull requests to [the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images).