Run update.sh

This commit is contained in:
Docker Library Bot 2016-12-14 11:32:56 -08:00
parent a8406fb6d6
commit c67346adc4
3 changed files with 31 additions and 10 deletions

View File

@ -52,7 +52,27 @@ CMD ["-f", "/some/config-dir/logstash.conf"]
Then, build with `docker build -t my-logstash .` and deploy with something like the following:
```console
$ docker run -it --rm my-logstash
$ docker run -d my-logstash
```
## Installing plugins
If you need to add any logstash plugins that do not ship with Logstash by default, the simplest solution is a Dockerfile using `logstash-plugin` included with Logsatsh. You can also pack in your customized config file.
```dockerfile
FROM logstash:5
RUN logstash-plugin install logstash-filter-de_dot
COPY logstash.conf /some/config-dir/
CMD ["-f", "/some/config-dir/logstash.conf"]
```
Then, build with `docker build -t my-logstash .` and deploy just like the previous example:
```console
$ docker run -d my-logstash
```
# Image Variants

View File

@ -1,13 +1,13 @@
# Supported tags and respective `Dockerfile` links
- [`precise`, `nd12.04` (*dockerfiles/precise/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/precise/Dockerfile)
- [`trusty`, `nd14.04` (*dockerfiles/trusty/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/trusty/Dockerfile)
- [`xenial`, `nd16.04` (*dockerfiles/xenial/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/xenial/Dockerfile)
- [`yakkety`, `nd16.10` (*dockerfiles/yakkety/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/yakkety/Dockerfile)
- [`wheezy`, `nd70` (*dockerfiles/wheezy/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/wheezy/Dockerfile)
- [`jessie`, `nd80` (*dockerfiles/jessie/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/jessie/Dockerfile)
- [`stretch`, `nd90` (*dockerfiles/stretch/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/stretch/Dockerfile)
- [`sid`, `nd` (*dockerfiles/sid/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/336c4d3566c3c8311960c001e6032dab6d59c3b3/dockerfiles/sid/Dockerfile)
- [`precise`, `nd12.04` (*dockerfiles/precise/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/precise/Dockerfile)
- [`trusty`, `nd14.04` (*dockerfiles/trusty/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/trusty/Dockerfile)
- [`xenial`, `nd16.04` (*dockerfiles/xenial/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/xenial/Dockerfile)
- [`yakkety`, `nd16.10` (*dockerfiles/yakkety/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/yakkety/Dockerfile)
- [`wheezy`, `nd70` (*dockerfiles/wheezy/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/wheezy/Dockerfile)
- [`jessie`, `nd80` (*dockerfiles/jessie/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/jessie/Dockerfile)
- [`stretch`, `nd90` (*dockerfiles/stretch/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/stretch/Dockerfile)
- [`sid`, `nd` (*dockerfiles/sid/Dockerfile*)](https://github.com/neurodebian/dockerfiles/blob/383ae2cf242d4737e813d42c402315c3a8cd4569/dockerfiles/sid/Dockerfile)
For more information about this image and its history, please see [the relevant manifest file (`library/neurodebian`)](https://github.com/docker-library/official-images/blob/master/library/neurodebian). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fneurodebian).

View File

@ -1,8 +1,9 @@
# Supported tags and respective `Dockerfile` links
- [`0.6.0` (*0.6/Dockerfile*)](https://github.com/hashicorp/docker-vault/blob/3d12aa78cdbdce22b3d3e30f1093843f21b0a8fa/0.6/Dockerfile)
- [`0.6`, `0.6.2`, `latest` (*0.6.2/Dockerfile*)](https://github.com/hashicorp/docker-vault/blob/3d3957180d689ecddb537aa799a878171280e8a3/0.6.2/Dockerfile)
- [`0.6`, `0.6.3`, `latest` (*0.6.3/Dockerfile*)](https://github.com/hashicorp/docker-vault/blob/f9a97ab152b51d39f54ab51136b2819305f70caf/0.6.3/Dockerfile)
- [`0.6.1` (*0.6.1/Dockerfile*)](https://github.com/hashicorp/docker-vault/blob/3d12aa78cdbdce22b3d3e30f1093843f21b0a8fa/0.6.1/Dockerfile)
- [`0.6.2` (*0.6.2/Dockerfile*)](https://github.com/hashicorp/docker-vault/blob/3d3957180d689ecddb537aa799a878171280e8a3/0.6.2/Dockerfile)
For more information about this image and its history, please see [the relevant manifest file (`library/vault`)](https://github.com/docker-library/official-images/blob/master/library/vault). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fvault).