Răsfoiți Sursa

Remove deprecated image docs

Tianon Gravi 8 ani în urmă
părinte
comite
6fad642dcd

+ 0 - 1
elasticsearch/README-short.txt

@@ -1 +0,0 @@
-Elasticsearch is a powerful open source search and analytics engine that makes data easy to explore.

+ 0 - 158
elasticsearch/README.md

@@ -1,158 +0,0 @@
-<!--
-
-********************************************************************************
-
-WARNING:
-
-    DO NOT EDIT "elasticsearch/README.md"
-
-    IT IS AUTO-GENERATED
-
-    (from the other files in "elasticsearch/" combined with a set of templates)
-
-********************************************************************************
-
--->
-
-# **DEPRECATED**
-
-This image has been deprecated in favor of the [official `elasticsearch` image](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/elasticsearch/elasticsearch:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Elasticsearch via the [elastic/elasticsearch GitHub repository](https://github.com/elastic/elasticsearch) and the Docker image via the [elastic/elasticsearch-docker GitHub repository](https://github.com/elastic/elasticsearch-docker), as well as community support via its [forums](https://discuss.elastic.co/c/elasticsearch).
-
-# Supported tags and respective `Dockerfile` links
-
--	[`5.5.2`, `5.5`, `5`, `latest` (*5/Dockerfile*)](https://github.com/docker-library/elasticsearch/blob/094b4b6bff8626a2391404413a2e338c48ef7a26/5/Dockerfile)
--	[`5.5.2-alpine`, `5.5-alpine`, `5-alpine`, `alpine` (*5/alpine/Dockerfile*)](https://github.com/docker-library/elasticsearch/blob/094b4b6bff8626a2391404413a2e338c48ef7a26/5/alpine/Dockerfile)
--	[`2.4.6`, `2.4`, `2` (*2.4/Dockerfile*)](https://github.com/docker-library/elasticsearch/blob/8e87587ac5d6b44a8382a229162c88e65618c30a/2.4/Dockerfile)
--	[`2.4.6-alpine`, `2.4-alpine`, `2-alpine` (*2.4/alpine/Dockerfile*)](https://github.com/docker-library/elasticsearch/blob/8e87587ac5d6b44a8382a229162c88e65618c30a/2.4/alpine/Dockerfile)
-
-# Quick reference
-
--	**Where to get help**:  
-	[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
-
--	**Where to file issues**:  
-	[https://github.com/docker-library/elasticsearch/issues](https://github.com/docker-library/elasticsearch/issues)
-
--	**Maintained by**:  
-	[the Docker Community](https://github.com/docker-library/elasticsearch)
-
--	**Published image artifact details**:  
-	[repo-info repo's `repos/elasticsearch/` directory](https://github.com/docker-library/repo-info/blob/master/repos/elasticsearch) ([history](https://github.com/docker-library/repo-info/commits/master/repos/elasticsearch))  
-	(image metadata, transfer size, etc)
-
--	**Image updates**:  
-	[official-images PRs with label `library/elasticsearch`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Felasticsearch)  
-	[official-images repo's `library/elasticsearch` file](https://github.com/docker-library/official-images/blob/master/library/elasticsearch) ([history](https://github.com/docker-library/official-images/commits/master/library/elasticsearch))
-
--	**Source of this description**:  
-	[docs repo's `elasticsearch/` directory](https://github.com/docker-library/docs/tree/master/elasticsearch) ([history](https://github.com/docker-library/docs/commits/master/elasticsearch))
-
--	**Supported Docker versions**:  
-	[the latest release](https://github.com/docker/docker/releases/latest) (down to 1.6 on a best-effort basis)
-
-# What is Elasticsearch?
-
-Elasticsearch is a search server based on Lucene. It provides a distributed, multitenant-capable full-text search engine with a RESTful web interface and schema-free JSON documents.
-
-Elasticsearch is a registered trademark of Elasticsearch BV.
-
-> [wikipedia.org/wiki/Elasticsearch](https://en.wikipedia.org/wiki/Elasticsearch)
-
-![logo](https://raw.githubusercontent.com/docker-library/docs/7688e51a41c0c10dca4e6c376be886ce64b9620f/elasticsearch/logo.png)
-
-# How to use this image
-
-## Cluster
-
-**Note:** since 5.0, Elasticsearch only listens on `localhost` by default on both http and transport, so this image sets `http.host` to `0.0.0.0` (given that `localhost` is not terribly useful in the Docker context).
-
-As a result, this image does not support clustering out of the box and extra configuration must be set in order to support it.
-
-Supporting clustering implies having Elasticsearch in a production mode which is more strict about the bootstrap checks that it performs, especially when checking the value of `vm.max_map_count` which is not namespaced and thus must be set to an acceptable value on the host (as opposed to simply using `--sysctl` on `docker run`).
-
-One example of adding clustering support is to pass the configuration on the `docker run`:
-
-```console
-$ docker run -d --name elas elasticsearch -Etransport.host=0.0.0.0 -Ediscovery.zen.minimum_master_nodes=1
-```
-
-See the following sections of the upstream documentation for more information:
-
--	[Setup Elasticsearch » Important System Configuration » Virtual memory](https://www.elastic.co/guide/en/elasticsearch/reference/5.0/vm-max-map-count.html)
--	[Setup Elasticsearch » Bootstrap Checks » Maximum map count check](https://www.elastic.co/guide/en/elasticsearch/reference/5.0/_maximum_map_count_check.html)
-
-This [comment in elastic/elasticsearch#4978](https://github.com/elastic/elasticsearch/issues/4978#issuecomment-258676104) shows why this change was added in upstream.
-
-> Elasticsearch will not start in production mode if `vm.max_map_count` is not high enough. [...] If the value on your system is NOT high enough, then your cluster is going to crash and burn at some stage and you will lose data.
-
-## Running Containers
-
-You can run the default `elasticsearch` command simply:
-
-```console
-$ docker run -d elasticsearch
-```
-
-You can also pass in additional flags to `elasticsearch`:
-
-```console
-$ docker run -d elasticsearch -Des.node.name="TestNode"
-```
-
-This image comes with a default set of configuration files for `elasticsearch`, but if you want to provide your own set of configuration files, you can do so via a volume mounted at `/usr/share/elasticsearch/config`:
-
-```console
-$ docker run -d -v "$PWD/config":/usr/share/elasticsearch/config elasticsearch
-```
-
-This image is configured with a volume at `/usr/share/elasticsearch/data` to hold the persisted index data. Use that path if you would like to keep the data in a mounted volume:
-
-```console
-$ docker run -d -v "$PWD/esdata":/usr/share/elasticsearch/data elasticsearch
-```
-
-This image includes `EXPOSE 9200 9300` ([default `http.port`](http://www.elastic.co/guide/en/elasticsearch/reference/1.5/modules-http.html)), so standard container linking will make it automatically available to the linked containers.
-
-## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose)
-
-Example `stack.yml` for `elasticsearch`:
-
-```yaml
-version: '3.1'
-
-services:
-
-    elasticsearch:
-        image: elasticsearch
-
-    kibana:
-        image: kibana
-        ports:
-            - 5601:5601
-```
-
-[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/96c08fac215f64844b9db61038a571b86534a12b/elasticsearch/stack.yml)
-
-Run `docker stack deploy -c stack.yml elasticsearch` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:5601`, `http://localhost:5601`, or `http://host-ip:5601` (as appropriate).
-
-# Image Variants
-
-The `elasticsearch` images come in many flavors, each designed for a specific use case.
-
-## `elasticsearch:<version>`
-
-This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
-
-## `elasticsearch:alpine`
-
-This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
-
-This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
-
-To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar).
-
-# License
-
-View [license information](https://github.com/elasticsearch/elasticsearch/blob/66b5ed86f7adede8102cd4d979b9f4924e5bd837/LICENSE.txt) for the software contained in this image.

+ 0 - 66
elasticsearch/content.md

@@ -1,66 +0,0 @@
-# What is Elasticsearch?
-
-Elasticsearch is a search server based on Lucene. It provides a distributed, multitenant-capable full-text search engine with a RESTful web interface and schema-free JSON documents.
-
-Elasticsearch is a registered trademark of Elasticsearch BV.
-
-> [wikipedia.org/wiki/Elasticsearch](https://en.wikipedia.org/wiki/Elasticsearch)
-
-%%LOGO%%
-
-# How to use this image
-
-## Cluster
-
-**Note:** since 5.0, Elasticsearch only listens on `localhost` by default on both http and transport, so this image sets `http.host` to `0.0.0.0` (given that `localhost` is not terribly useful in the Docker context).
-
-As a result, this image does not support clustering out of the box and extra configuration must be set in order to support it.
-
-Supporting clustering implies having Elasticsearch in a production mode which is more strict about the bootstrap checks that it performs, especially when checking the value of `vm.max_map_count` which is not namespaced and thus must be set to an acceptable value on the host (as opposed to simply using `--sysctl` on `docker run`).
-
-One example of adding clustering support is to pass the configuration on the `docker run`:
-
-```console
-$ docker run -d --name elas elasticsearch -Etransport.host=0.0.0.0 -Ediscovery.zen.minimum_master_nodes=1
-```
-
-See the following sections of the upstream documentation for more information:
-
--	[Setup Elasticsearch » Important System Configuration » Virtual memory](https://www.elastic.co/guide/en/elasticsearch/reference/5.0/vm-max-map-count.html)
--	[Setup Elasticsearch » Bootstrap Checks » Maximum map count check](https://www.elastic.co/guide/en/elasticsearch/reference/5.0/_maximum_map_count_check.html)
-
-This [comment in elastic/elasticsearch#4978](https://github.com/elastic/elasticsearch/issues/4978#issuecomment-258676104) shows why this change was added in upstream.
-
-> Elasticsearch will not start in production mode if `vm.max_map_count` is not high enough. [...] If the value on your system is NOT high enough, then your cluster is going to crash and burn at some stage and you will lose data.
-
-## Running Containers
-
-You can run the default `elasticsearch` command simply:
-
-```console
-$ docker run -d elasticsearch
-```
-
-You can also pass in additional flags to `elasticsearch`:
-
-```console
-$ docker run -d elasticsearch -Des.node.name="TestNode"
-```
-
-This image comes with a default set of configuration files for `elasticsearch`, but if you want to provide your own set of configuration files, you can do so via a volume mounted at `/usr/share/elasticsearch/config`:
-
-```console
-$ docker run -d -v "$PWD/config":/usr/share/elasticsearch/config elasticsearch
-```
-
-This image is configured with a volume at `/usr/share/elasticsearch/data` to hold the persisted index data. Use that path if you would like to keep the data in a mounted volume:
-
-```console
-$ docker run -d -v "$PWD/esdata":/usr/share/elasticsearch/data elasticsearch
-```
-
-This image includes `EXPOSE 9200 9300` ([default `http.port`](http://www.elastic.co/guide/en/elasticsearch/reference/1.5/modules-http.html)), so standard container linking will make it automatically available to the linked containers.
-
-## %%STACK%%
-
-Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:5601`, `http://localhost:5601`, or `http://host-ip:5601` (as appropriate).

+ 0 - 3
elasticsearch/deprecated.md

@@ -1,3 +0,0 @@
-This image has been deprecated in favor of the [official `elasticsearch` image](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/elasticsearch/elasticsearch:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Elasticsearch via the [elastic/elasticsearch GitHub repository](https://github.com/elastic/elasticsearch) and the Docker image via the [elastic/elasticsearch-docker GitHub repository](https://github.com/elastic/elasticsearch-docker), as well as community support via its [forums](https://discuss.elastic.co/c/elasticsearch).

+ 0 - 1
elasticsearch/github-repo

@@ -1 +0,0 @@
-https://github.com/docker-library/elasticsearch

+ 0 - 1
elasticsearch/license.md

@@ -1 +0,0 @@
-View [license information](https://github.com/elasticsearch/elasticsearch/blob/66b5ed86f7adede8102cd4d979b9f4924e5bd837/LICENSE.txt) for the software contained in this image.

BIN
elasticsearch/logo.png


+ 0 - 1
elasticsearch/maintainer.md

@@ -1 +0,0 @@
-../.common-templates/maintainer-community.md

+ 0 - 11
elasticsearch/stack.yml

@@ -1,11 +0,0 @@
-version: '3.1'
-
-services:
-
-    elasticsearch:
-        image: elasticsearch
-
-    kibana:
-        image: kibana
-        ports:
-            - 5601:5601

+ 0 - 1
kibana/README-short.txt

@@ -1 +0,0 @@
-Kibana gives shape to any kind of data — structured and unstructured — indexed in Elasticsearch.

+ 0 - 115
kibana/README.md

@@ -1,115 +0,0 @@
-<!--
-
-********************************************************************************
-
-WARNING:
-
-    DO NOT EDIT "kibana/README.md"
-
-    IT IS AUTO-GENERATED
-
-    (from the other files in "kibana/" combined with a set of templates)
-
-********************************************************************************
-
--->
-
-# **DEPRECATED**
-
-This image has been deprecated in favor of the [official `kibana` image](https://www.elastic.co/guide/en/kibana/current/_pulling_the_image.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/kibana/kibana:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Kibana via the [elastic/kibana GitHub repository](https://github.com/elastic/kibana) and the Docker image via the [elastic/kibana-docker GitHub repository](https://github.com/elastic/kibana-docker), as well as community support via its [forums](https://discuss.elastic.co/c/kibana).
-
-# Supported tags and respective `Dockerfile` links
-
--	[`5.5.2`, `5.5`, `5`, `latest` (*5/Dockerfile*)](https://github.com/docker-library/kibana/blob/c6a6b5a2d71b8f99a4292307bfcc9417843efadc/5/Dockerfile)
--	[`4.6.6`, `4.6`, `4` (*4.6/Dockerfile*)](https://github.com/docker-library/kibana/blob/febc4b766dabfc5a30f04373337cd0a0ec997bb2/4.6/Dockerfile)
-
-# Quick reference
-
--	**Where to get help**:  
-	[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
-
--	**Where to file issues**:  
-	[https://github.com/docker-library/kibana/issues](https://github.com/docker-library/kibana/issues)
-
--	**Maintained by**:  
-	[the Docker Community](https://github.com/docker-library/kibana)
-
--	**Published image artifact details**:  
-	[repo-info repo's `repos/kibana/` directory](https://github.com/docker-library/repo-info/blob/master/repos/kibana) ([history](https://github.com/docker-library/repo-info/commits/master/repos/kibana))  
-	(image metadata, transfer size, etc)
-
--	**Image updates**:  
-	[official-images PRs with label `library/kibana`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fkibana)  
-	[official-images repo's `library/kibana` file](https://github.com/docker-library/official-images/blob/master/library/kibana) ([history](https://github.com/docker-library/official-images/commits/master/library/kibana))
-
--	**Source of this description**:  
-	[docs repo's `kibana/` directory](https://github.com/docker-library/docs/tree/master/kibana) ([history](https://github.com/docker-library/docs/commits/master/kibana))
-
--	**Supported Docker versions**:  
-	[the latest release](https://github.com/docker/docker/releases/latest) (down to 1.6 on a best-effort basis)
-
-# What is Kibana?
-
-Kibana is an open source data visualization plugin for Elasticsearch. It provides visualization capabilities on top of the content indexed on an Elasticsearch cluster. Users can create bar, line and scatter plots, or pie charts and maps on top of large volumes of data.
-
-Kibana is a registered trademark of Elasticsearch BV.
-
-> [wikipedia.org/wiki/Kibana](https://en.wikipedia.org/wiki/Kibana)
-
-![logo](https://raw.githubusercontent.com/docker-library/docs/8965672c23522a2196bba6a431a8746c10116304/kibana/logo.png)
-
-# How to use this image
-
-You can run the default `kibana` command simply:
-
-```console
-$ docker run --link some-elasticsearch:elasticsearch -d kibana
-```
-
-You can also pass in additional flags to `kibana`:
-
-```console
-$ docker run --link some-elasticsearch:elasticsearch -d kibana --plugins /somewhere/else
-```
-
-This image includes `EXPOSE 5601` ([default `port`](https://www.elastic.co/guide/en/kibana/5.2/settings.html)). If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
-
-```console
-$ docker run --name some-kibana --link some-elasticsearch:elasticsearch -p 5601:5601 -d kibana
-```
-
-You can also provide the address of elasticsearch via `ELASTICSEARCH_URL` environnement variable:
-
-```console
-$ docker run --name some-kibana -e ELASTICSEARCH_URL=http://some-elasticsearch:9200 -p 5601:5601 -d kibana
-```
-
-Then, access it via `http://localhost:5601` or `http://host-ip:5601` in a browser.
-
-## ... via [`docker stack deploy`](https://docs.docker.com/engine/reference/commandline/stack_deploy/) or [`docker-compose`](https://github.com/docker/compose)
-
-Example `stack.yml` for `kibana`:
-
-```yaml
-version: '3.1'
-
-services:
-
-    kibana:
-        image: kibana
-        ports:
-            - 5601:5601
-
-    elasticsearch:
-        image: elasticsearch
-```
-
-[![Try in PWD](https://github.com/play-with-docker/stacks/raw/cff22438cb4195ace27f9b15784bbb497047afa7/assets/images/button.png)](http://play-with-docker.com?stack=https://raw.githubusercontent.com/docker-library/docs/96c08fac215f64844b9db61038a571b86534a12b/kibana/stack.yml)
-
-Run `docker stack deploy -c stack.yml kibana` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:5601`, `http://localhost:5601`, or `http://host-ip:5601` (as appropriate).
-
-# License
-
-View [license information](https://github.com/elastic/kibana/blob/4557a6fc0ba08c5e7ac813a180179e5e2631c90a/LICENSE.md) for the software contained in this image.

+ 0 - 41
kibana/content.md

@@ -1,41 +0,0 @@
-# What is Kibana?
-
-Kibana is an open source data visualization plugin for Elasticsearch. It provides visualization capabilities on top of the content indexed on an Elasticsearch cluster. Users can create bar, line and scatter plots, or pie charts and maps on top of large volumes of data.
-
-Kibana is a registered trademark of Elasticsearch BV.
-
-> [wikipedia.org/wiki/Kibana](https://en.wikipedia.org/wiki/Kibana)
-
-%%LOGO%%
-
-# How to use this image
-
-You can run the default `%%REPO%%` command simply:
-
-```console
-$ docker run --link some-elasticsearch:elasticsearch -d %%REPO%%
-```
-
-You can also pass in additional flags to `%%REPO%%`:
-
-```console
-$ docker run --link some-elasticsearch:elasticsearch -d %%REPO%% --plugins /somewhere/else
-```
-
-This image includes `EXPOSE 5601` ([default `port`](https://www.elastic.co/guide/en/kibana/5.2/settings.html)). If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
-
-```console
-$ docker run --name some-%%REPO%% --link some-elasticsearch:elasticsearch -p 5601:5601 -d %%REPO%%
-```
-
-You can also provide the address of elasticsearch via `ELASTICSEARCH_URL` environnement variable:
-
-```console
-$ docker run --name some-kibana -e ELASTICSEARCH_URL=http://some-elasticsearch:9200 -p 5601:5601 -d kibana
-```
-
-Then, access it via `http://localhost:5601` or `http://host-ip:5601` in a browser.
-
-## %%STACK%%
-
-Run `docker stack deploy -c stack.yml %%REPO%%` (or `docker-compose -f stack.yml up`), wait for it to initialize completely, and visit `http://swarm-ip:5601`, `http://localhost:5601`, or `http://host-ip:5601` (as appropriate).

+ 0 - 3
kibana/deprecated.md

@@ -1,3 +0,0 @@
-This image has been deprecated in favor of the [official `kibana` image](https://www.elastic.co/guide/en/kibana/current/_pulling_the_image.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/kibana/kibana:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Kibana via the [elastic/kibana GitHub repository](https://github.com/elastic/kibana) and the Docker image via the [elastic/kibana-docker GitHub repository](https://github.com/elastic/kibana-docker), as well as community support via its [forums](https://discuss.elastic.co/c/kibana).

+ 0 - 1
kibana/github-repo

@@ -1 +0,0 @@
-https://github.com/docker-library/kibana

+ 0 - 1
kibana/license.md

@@ -1 +0,0 @@
-View [license information](https://github.com/elastic/kibana/blob/4557a6fc0ba08c5e7ac813a180179e5e2631c90a/LICENSE.md) for the software contained in this image.

BIN
kibana/logo.png


+ 0 - 1
kibana/maintainer.md

@@ -1 +0,0 @@
-../.common-templates/maintainer-community.md

+ 0 - 12
kibana/stack.yml

@@ -1,12 +0,0 @@
-version: '3.1'
-
-services:
-
-    kibana:
-        image: kibana
-        ports:
-            - 5601:5601
-
-    elasticsearch:
-        image: elasticsearch
-

+ 0 - 1
logstash/README-short.txt

@@ -1 +0,0 @@
-Logstash is a tool for managing events and logs.

+ 0 - 137
logstash/README.md

@@ -1,137 +0,0 @@
-<!--
-
-********************************************************************************
-
-WARNING:
-
-    DO NOT EDIT "logstash/README.md"
-
-    IT IS AUTO-GENERATED
-
-    (from the other files in "logstash/" combined with a set of templates)
-
-********************************************************************************
-
--->
-
-# **DEPRECATED**
-
-This image has been deprecated in favor of the [official `logstash` image](https://www.elastic.co/guide/en/logstash/current/docker.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/logstash/logstash:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Logstash via the [elastic/logstash GitHub repository](https://github.com/elastic/logstash) and the Docker image via the [elastic/logstash-docker GitHub repository](https://github.com/elastic/logstash-docker), as well as community support via its [forums](https://discuss.elastic.co/c/logstash).
-
-# Supported tags and respective `Dockerfile` links
-
--	[`5.5.2`, `5.5`, `5`, `latest` (*5/Dockerfile*)](https://github.com/docker-library/logstash/blob/3822f5ee79034aff41bc62d45d713fd38f0fc447/5/Dockerfile)
--	[`5.5.2-alpine`, `5.5-alpine`, `5-alpine`, `alpine` (*5/alpine/Dockerfile*)](https://github.com/docker-library/logstash/blob/3822f5ee79034aff41bc62d45d713fd38f0fc447/5/alpine/Dockerfile)
--	[`2.4.1`, `2.4`, `2` (*2.4/Dockerfile*)](https://github.com/docker-library/logstash/blob/4f425e9008de3d0375d1749d390029808aed8d96/2.4/Dockerfile)
--	[`2.4.1-alpine`, `2.4-alpine`, `2-alpine` (*2.4/alpine/Dockerfile*)](https://github.com/docker-library/logstash/blob/19330c802e6f198f015c0c4723a6d86ed449d93f/2.4/alpine/Dockerfile)
-
-# Quick reference
-
--	**Where to get help**:  
-	[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
-
--	**Where to file issues**:  
-	[https://github.com/docker-library/logstash/issues](https://github.com/docker-library/logstash/issues)
-
--	**Maintained by**:  
-	[the Docker Community](https://github.com/docker-library/logstash)
-
--	**Published image artifact details**:  
-	[repo-info repo's `repos/logstash/` directory](https://github.com/docker-library/repo-info/blob/master/repos/logstash) ([history](https://github.com/docker-library/repo-info/commits/master/repos/logstash))  
-	(image metadata, transfer size, etc)
-
--	**Image updates**:  
-	[official-images PRs with label `library/logstash`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Flogstash)  
-	[official-images repo's `library/logstash` file](https://github.com/docker-library/official-images/blob/master/library/logstash) ([history](https://github.com/docker-library/official-images/commits/master/library/logstash))
-
--	**Source of this description**:  
-	[docs repo's `logstash/` directory](https://github.com/docker-library/docs/tree/master/logstash) ([history](https://github.com/docker-library/docs/commits/master/logstash))
-
--	**Supported Docker versions**:  
-	[the latest release](https://github.com/docker/docker/releases/latest) (down to 1.6 on a best-effort basis)
-
-# What is Logstash?
-
-Logstash is a tool that can be used to collect, process and forward events and log messages. Collection is accomplished via number of configurable input plugins including raw socket/packet communication, file tailing and several message bus clients. Once an input plugin has collected data it can be processed by any number of filters which modify and annotate the event data. Finally events are routed to output plugins which can forward the events to a variety of external programs including Elasticsearch, local files and several message bus implementations.
-
-> [wikitech.wikimedia.org/wiki/Logstash](https://wikitech.wikimedia.org/wiki/Logstash)
-
-![logo](https://raw.githubusercontent.com/docker-library/docs/3a5ee2af49550e2c692a15c339725b4967720db1/logstash/logo.png)
-
-# How to use this image
-
-## Start Logstash with commandline configuration
-
-If you need to run logstash with configuration provided on the commandline, you can use the logstash image as follows:
-
-```console
-$ docker run -it --rm logstash -e 'input { stdin { } } output { stdout { } }'
-```
-
-## Start Logstash with configuration file
-
-If you need to run logstash with a configuration file, `logstash.conf`, that's located in your current directory, you can use the logstash image as follows:
-
-```console
-$ docker run -it --rm -v "$PWD":/config-dir logstash -f /config-dir/logstash.conf
-```
-
-### Using a `Dockerfile`
-
-If you'd like to have a production Logstash image with a pre-baked configuration file, use of a `Dockerfile` is recommended:
-
-```dockerfile
-FROM logstash
-
-COPY logstash.conf /some/config-dir/
-
-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 -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
-
-The `logstash` images come in many flavors, each designed for a specific use case.
-
-## `logstash:<version>`
-
-This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
-
-## `logstash:alpine`
-
-This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
-
-This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
-
-To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar).
-
-# License
-
-View [license information](https://github.com/elastic/logstash/blob/master/LICENSE) for the software contained in this image.

+ 0 - 63
logstash/content.md

@@ -1,63 +0,0 @@
-# What is Logstash?
-
-Logstash is a tool that can be used to collect, process and forward events and log messages. Collection is accomplished via number of configurable input plugins including raw socket/packet communication, file tailing and several message bus clients. Once an input plugin has collected data it can be processed by any number of filters which modify and annotate the event data. Finally events are routed to output plugins which can forward the events to a variety of external programs including Elasticsearch, local files and several message bus implementations.
-
-> [wikitech.wikimedia.org/wiki/Logstash](https://wikitech.wikimedia.org/wiki/Logstash)
-
-%%LOGO%%
-
-# How to use this image
-
-## Start Logstash with commandline configuration
-
-If you need to run logstash with configuration provided on the commandline, you can use the logstash image as follows:
-
-```console
-$ docker run -it --rm logstash -e 'input { stdin { } } output { stdout { } }'
-```
-
-## Start Logstash with configuration file
-
-If you need to run logstash with a configuration file, `logstash.conf`, that's located in your current directory, you can use the logstash image as follows:
-
-```console
-$ docker run -it --rm -v "$PWD":/config-dir logstash -f /config-dir/logstash.conf
-```
-
-### Using a `Dockerfile`
-
-If you'd like to have a production Logstash image with a pre-baked configuration file, use of a `Dockerfile` is recommended:
-
-```dockerfile
-FROM logstash
-
-COPY logstash.conf /some/config-dir/
-
-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 -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
-```

+ 0 - 3
logstash/deprecated.md

@@ -1,3 +0,0 @@
-This image has been deprecated in favor of the [official `logstash` image](https://www.elastic.co/guide/en/logstash/current/docker.html) provided and maintained by [elastic.co](https://www.elastic.co/). The upstream images are available to pull via `docker.elastic.co/logstash/logstash:[version]` like `5.4.2`. The images found here will receive no further updates once the `5.6.0` release is available upstream. Please adjust your usage accordingly.
-
-Elastic provides open-source support for Logstash via the [elastic/logstash GitHub repository](https://github.com/elastic/logstash) and the Docker image via the [elastic/logstash-docker GitHub repository](https://github.com/elastic/logstash-docker), as well as community support via its [forums](https://discuss.elastic.co/c/logstash).

+ 0 - 1
logstash/github-repo

@@ -1 +0,0 @@
-https://github.com/docker-library/logstash

+ 0 - 1
logstash/license.md

@@ -1 +0,0 @@
-View [license information](https://github.com/elastic/logstash/blob/master/LICENSE) for the software contained in this image.

BIN
logstash/logo.png


+ 0 - 1
logstash/maintainer.md

@@ -1 +0,0 @@
-../.common-templates/maintainer-community.md