├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── 1.7 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── logging.yml │ └── logrotate └── elastic-entrypoint.sh ├── 2.3 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── logging.yml │ └── logrotate └── elastic-entrypoint.sh ├── 2.4 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── logging.yml │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.0 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.2 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.3 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.4 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.5 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 5.6 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.0 ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.1 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.2 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.3 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.4 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.5 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.6 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.7 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 6.8 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ ├── jvm.options │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.0 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.1 ├── .dockerignore ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.10 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.15 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 7.16 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 7.17 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 7.2 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.3 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.4 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.5 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.6 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.7 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.8 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 7.9 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks │ └── post_push ├── 8.0 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── 8.1 ├── Dockerfile ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── log4j2.properties │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh ├── LATEST ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── docker-compose.prod.yml ├── docker-compose.x-pack.yml ├── docker-compose.yml ├── docs ├── NOTES.md ├── create.md ├── dockerbeat.md ├── options.md └── production.md ├── es-logo.png ├── hack └── make │ ├── dockerfile │ └── tag ├── kopf ├── .dockerignore ├── Dockerfile ├── VERSION ├── config │ ├── elastic │ │ ├── elasticsearch.yml │ │ └── logging.yml │ └── logrotate ├── docker-healthcheck └── elastic-entrypoint.sh └── x-pack ├── .dockerignore ├── Dockerfile ├── VERSION ├── config ├── elastic │ ├── elasticsearch.yml │ └── log4j2.properties ├── logrotate └── x-pack │ └── log4j2.properties ├── docker-healthcheck ├── elastic-entrypoint.sh └── hooks └── post_push /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/.gitignore -------------------------------------------------------------------------------- /1.7/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/.dockerignore -------------------------------------------------------------------------------- /1.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/Dockerfile -------------------------------------------------------------------------------- /1.7/VERSION: -------------------------------------------------------------------------------- 1 | 1.7 2 | -------------------------------------------------------------------------------- /1.7/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /1.7/config/elastic/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/config/elastic/logging.yml -------------------------------------------------------------------------------- /1.7/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/config/logrotate -------------------------------------------------------------------------------- /1.7/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/1.7/elastic-entrypoint.sh -------------------------------------------------------------------------------- /2.3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/.dockerignore -------------------------------------------------------------------------------- /2.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/Dockerfile -------------------------------------------------------------------------------- /2.3/VERSION: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /2.3/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /2.3/config/elastic/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/config/elastic/logging.yml -------------------------------------------------------------------------------- /2.3/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/config/logrotate -------------------------------------------------------------------------------- /2.3/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.3/elastic-entrypoint.sh -------------------------------------------------------------------------------- /2.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/.dockerignore -------------------------------------------------------------------------------- /2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/Dockerfile -------------------------------------------------------------------------------- /2.4/VERSION: -------------------------------------------------------------------------------- 1 | 2.4 2 | -------------------------------------------------------------------------------- /2.4/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /2.4/config/elastic/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/config/elastic/logging.yml -------------------------------------------------------------------------------- /2.4/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/config/logrotate -------------------------------------------------------------------------------- /2.4/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/docker-healthcheck -------------------------------------------------------------------------------- /2.4/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/2.4/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.0/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/.dockerignore -------------------------------------------------------------------------------- /5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/Dockerfile -------------------------------------------------------------------------------- /5.0/VERSION: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /5.0/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.0/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.0/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/config/logrotate -------------------------------------------------------------------------------- /5.0/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/docker-healthcheck -------------------------------------------------------------------------------- /5.0/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.0/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/.dockerignore -------------------------------------------------------------------------------- /5.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/Dockerfile -------------------------------------------------------------------------------- /5.2/VERSION: -------------------------------------------------------------------------------- 1 | 5.2 2 | -------------------------------------------------------------------------------- /5.2/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.2/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.2/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/config/logrotate -------------------------------------------------------------------------------- /5.2/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/docker-healthcheck -------------------------------------------------------------------------------- /5.2/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.2/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/.dockerignore -------------------------------------------------------------------------------- /5.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/Dockerfile -------------------------------------------------------------------------------- /5.3/VERSION: -------------------------------------------------------------------------------- 1 | 5.3 2 | -------------------------------------------------------------------------------- /5.3/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.3/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.3/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/config/logrotate -------------------------------------------------------------------------------- /5.3/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/docker-healthcheck -------------------------------------------------------------------------------- /5.3/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.3/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/.dockerignore -------------------------------------------------------------------------------- /5.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/Dockerfile -------------------------------------------------------------------------------- /5.4/VERSION: -------------------------------------------------------------------------------- 1 | 5.4 2 | -------------------------------------------------------------------------------- /5.4/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.4/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.4/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/config/logrotate -------------------------------------------------------------------------------- /5.4/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/docker-healthcheck -------------------------------------------------------------------------------- /5.4/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.4/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.5/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/.dockerignore -------------------------------------------------------------------------------- /5.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/Dockerfile -------------------------------------------------------------------------------- /5.5/VERSION: -------------------------------------------------------------------------------- 1 | 5.5 2 | -------------------------------------------------------------------------------- /5.5/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.5/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.5/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/config/logrotate -------------------------------------------------------------------------------- /5.5/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/docker-healthcheck -------------------------------------------------------------------------------- /5.5/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.5/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.6/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/.dockerignore -------------------------------------------------------------------------------- /5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/Dockerfile -------------------------------------------------------------------------------- /5.6/VERSION: -------------------------------------------------------------------------------- 1 | 5.6 2 | -------------------------------------------------------------------------------- /5.6/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /5.6/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /5.6/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/config/logrotate -------------------------------------------------------------------------------- /5.6/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/docker-healthcheck -------------------------------------------------------------------------------- /5.6/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/elastic-entrypoint.sh -------------------------------------------------------------------------------- /5.6/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/5.6/hooks/post_push -------------------------------------------------------------------------------- /6.0/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/.dockerignore -------------------------------------------------------------------------------- /6.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/Dockerfile -------------------------------------------------------------------------------- /6.0/VERSION: -------------------------------------------------------------------------------- 1 | 5.4 2 | -------------------------------------------------------------------------------- /6.0/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.0/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.0/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/config/logrotate -------------------------------------------------------------------------------- /6.0/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/docker-healthcheck -------------------------------------------------------------------------------- /6.0/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.0/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.0/hooks/post_push -------------------------------------------------------------------------------- /6.1/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/.dockerignore -------------------------------------------------------------------------------- /6.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/Dockerfile -------------------------------------------------------------------------------- /6.1/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.1/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.1/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/config/logrotate -------------------------------------------------------------------------------- /6.1/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/docker-healthcheck -------------------------------------------------------------------------------- /6.1/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.1/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.1/hooks/post_push -------------------------------------------------------------------------------- /6.2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/.dockerignore -------------------------------------------------------------------------------- /6.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/Dockerfile -------------------------------------------------------------------------------- /6.2/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.2/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.2/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/config/logrotate -------------------------------------------------------------------------------- /6.2/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/docker-healthcheck -------------------------------------------------------------------------------- /6.2/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.2/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.2/hooks/post_push -------------------------------------------------------------------------------- /6.3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/.dockerignore -------------------------------------------------------------------------------- /6.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/Dockerfile -------------------------------------------------------------------------------- /6.3/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.3/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.3/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/config/logrotate -------------------------------------------------------------------------------- /6.3/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/docker-healthcheck -------------------------------------------------------------------------------- /6.3/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.3/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.3/hooks/post_push -------------------------------------------------------------------------------- /6.4/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/.dockerignore -------------------------------------------------------------------------------- /6.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/Dockerfile -------------------------------------------------------------------------------- /6.4/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.4/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.4/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/config/logrotate -------------------------------------------------------------------------------- /6.4/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/docker-healthcheck -------------------------------------------------------------------------------- /6.4/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.4/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.4/hooks/post_push -------------------------------------------------------------------------------- /6.5/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/.dockerignore -------------------------------------------------------------------------------- /6.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/Dockerfile -------------------------------------------------------------------------------- /6.5/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.5/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.5/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/config/logrotate -------------------------------------------------------------------------------- /6.5/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/docker-healthcheck -------------------------------------------------------------------------------- /6.5/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.5/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.5/hooks/post_push -------------------------------------------------------------------------------- /6.6/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/.dockerignore -------------------------------------------------------------------------------- /6.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/Dockerfile -------------------------------------------------------------------------------- /6.6/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.6/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.6/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/config/logrotate -------------------------------------------------------------------------------- /6.6/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/docker-healthcheck -------------------------------------------------------------------------------- /6.6/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.6/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.6/hooks/post_push -------------------------------------------------------------------------------- /6.7/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/.dockerignore -------------------------------------------------------------------------------- /6.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/Dockerfile -------------------------------------------------------------------------------- /6.7/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.7/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.7/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/config/logrotate -------------------------------------------------------------------------------- /6.7/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/docker-healthcheck -------------------------------------------------------------------------------- /6.7/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.7/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.7/hooks/post_push -------------------------------------------------------------------------------- /6.8/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/.dockerignore -------------------------------------------------------------------------------- /6.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/Dockerfile -------------------------------------------------------------------------------- /6.8/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /6.8/config/elastic/jvm.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/config/elastic/jvm.options -------------------------------------------------------------------------------- /6.8/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /6.8/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/config/logrotate -------------------------------------------------------------------------------- /6.8/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/docker-healthcheck -------------------------------------------------------------------------------- /6.8/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/elastic-entrypoint.sh -------------------------------------------------------------------------------- /6.8/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/6.8/hooks/post_push -------------------------------------------------------------------------------- /7.0/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/.dockerignore -------------------------------------------------------------------------------- /7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/Dockerfile -------------------------------------------------------------------------------- /7.0/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.0/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.0/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/config/logrotate -------------------------------------------------------------------------------- /7.0/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/docker-healthcheck -------------------------------------------------------------------------------- /7.0/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.0/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.0/hooks/post_push -------------------------------------------------------------------------------- /7.1/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/.dockerignore -------------------------------------------------------------------------------- /7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/Dockerfile -------------------------------------------------------------------------------- /7.1/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.1/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.1/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/config/logrotate -------------------------------------------------------------------------------- /7.1/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/docker-healthcheck -------------------------------------------------------------------------------- /7.1/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.1/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.1/hooks/post_push -------------------------------------------------------------------------------- /7.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/Dockerfile -------------------------------------------------------------------------------- /7.10/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.10/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.10/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/config/logrotate -------------------------------------------------------------------------------- /7.10/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/docker-healthcheck -------------------------------------------------------------------------------- /7.10/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.10/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.10/hooks/post_push -------------------------------------------------------------------------------- /7.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/Dockerfile -------------------------------------------------------------------------------- /7.15/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.15/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.15/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/config/logrotate -------------------------------------------------------------------------------- /7.15/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/docker-healthcheck -------------------------------------------------------------------------------- /7.15/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.15/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/Dockerfile -------------------------------------------------------------------------------- /7.16/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.16/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.16/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/config/logrotate -------------------------------------------------------------------------------- /7.16/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/docker-healthcheck -------------------------------------------------------------------------------- /7.16/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.16/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/Dockerfile -------------------------------------------------------------------------------- /7.17/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.17/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.17/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/config/logrotate -------------------------------------------------------------------------------- /7.17/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/docker-healthcheck -------------------------------------------------------------------------------- /7.17/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.17/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/Dockerfile -------------------------------------------------------------------------------- /7.2/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.2/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.2/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/config/logrotate -------------------------------------------------------------------------------- /7.2/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/docker-healthcheck -------------------------------------------------------------------------------- /7.2/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.2/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.2/hooks/post_push -------------------------------------------------------------------------------- /7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/Dockerfile -------------------------------------------------------------------------------- /7.3/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.3/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.3/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/config/logrotate -------------------------------------------------------------------------------- /7.3/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/docker-healthcheck -------------------------------------------------------------------------------- /7.3/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.3/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.3/hooks/post_push -------------------------------------------------------------------------------- /7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/Dockerfile -------------------------------------------------------------------------------- /7.4/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.4/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.4/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/config/logrotate -------------------------------------------------------------------------------- /7.4/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/docker-healthcheck -------------------------------------------------------------------------------- /7.4/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.4/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.4/hooks/post_push -------------------------------------------------------------------------------- /7.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/Dockerfile -------------------------------------------------------------------------------- /7.5/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.5/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.5/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/config/logrotate -------------------------------------------------------------------------------- /7.5/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/docker-healthcheck -------------------------------------------------------------------------------- /7.5/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.5/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.5/hooks/post_push -------------------------------------------------------------------------------- /7.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/Dockerfile -------------------------------------------------------------------------------- /7.6/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.6/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.6/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/config/logrotate -------------------------------------------------------------------------------- /7.6/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/docker-healthcheck -------------------------------------------------------------------------------- /7.6/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.6/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.6/hooks/post_push -------------------------------------------------------------------------------- /7.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/Dockerfile -------------------------------------------------------------------------------- /7.7/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.7/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.7/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/config/logrotate -------------------------------------------------------------------------------- /7.7/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/docker-healthcheck -------------------------------------------------------------------------------- /7.7/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.7/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.7/hooks/post_push -------------------------------------------------------------------------------- /7.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/Dockerfile -------------------------------------------------------------------------------- /7.8/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.8/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.8/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/config/logrotate -------------------------------------------------------------------------------- /7.8/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/docker-healthcheck -------------------------------------------------------------------------------- /7.8/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.8/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.8/hooks/post_push -------------------------------------------------------------------------------- /7.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/Dockerfile -------------------------------------------------------------------------------- /7.9/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /7.9/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /7.9/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/config/logrotate -------------------------------------------------------------------------------- /7.9/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/docker-healthcheck -------------------------------------------------------------------------------- /7.9/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/elastic-entrypoint.sh -------------------------------------------------------------------------------- /7.9/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/7.9/hooks/post_push -------------------------------------------------------------------------------- /8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/Dockerfile -------------------------------------------------------------------------------- /8.0/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /8.0/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /8.0/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/config/logrotate -------------------------------------------------------------------------------- /8.0/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/docker-healthcheck -------------------------------------------------------------------------------- /8.0/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.0/elastic-entrypoint.sh -------------------------------------------------------------------------------- /8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/Dockerfile -------------------------------------------------------------------------------- /8.1/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /8.1/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /8.1/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/config/logrotate -------------------------------------------------------------------------------- /8.1/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/docker-healthcheck -------------------------------------------------------------------------------- /8.1/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/8.1/elastic-entrypoint.sh -------------------------------------------------------------------------------- /LATEST: -------------------------------------------------------------------------------- 1 | 8.1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/Vagrantfile -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.x-pack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docker-compose.x-pack.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docs/NOTES.md -------------------------------------------------------------------------------- /docs/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docs/create.md -------------------------------------------------------------------------------- /docs/dockerbeat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docs/dockerbeat.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/docs/production.md -------------------------------------------------------------------------------- /es-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/es-logo.png -------------------------------------------------------------------------------- /hack/make/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/hack/make/dockerfile -------------------------------------------------------------------------------- /hack/make/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/hack/make/tag -------------------------------------------------------------------------------- /kopf/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/.dockerignore -------------------------------------------------------------------------------- /kopf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/Dockerfile -------------------------------------------------------------------------------- /kopf/VERSION: -------------------------------------------------------------------------------- 1 | kopf 2 | -------------------------------------------------------------------------------- /kopf/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /kopf/config/elastic/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/config/elastic/logging.yml -------------------------------------------------------------------------------- /kopf/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/config/logrotate -------------------------------------------------------------------------------- /kopf/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/docker-healthcheck -------------------------------------------------------------------------------- /kopf/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/kopf/elastic-entrypoint.sh -------------------------------------------------------------------------------- /x-pack/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/.dockerignore -------------------------------------------------------------------------------- /x-pack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/Dockerfile -------------------------------------------------------------------------------- /x-pack/VERSION: -------------------------------------------------------------------------------- 1 | x-pack 2 | -------------------------------------------------------------------------------- /x-pack/config/elastic/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/config/elastic/elasticsearch.yml -------------------------------------------------------------------------------- /x-pack/config/elastic/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/config/elastic/log4j2.properties -------------------------------------------------------------------------------- /x-pack/config/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/config/logrotate -------------------------------------------------------------------------------- /x-pack/config/x-pack/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/config/x-pack/log4j2.properties -------------------------------------------------------------------------------- /x-pack/docker-healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/docker-healthcheck -------------------------------------------------------------------------------- /x-pack/elastic-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/elastic-entrypoint.sh -------------------------------------------------------------------------------- /x-pack/hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blacktop/docker-elasticsearch-alpine/HEAD/x-pack/hooks/post_push --------------------------------------------------------------------------------