Remove all search guard
[clamp.git] / src / main / docker / elasticsearch / Dockerfile
1 # https://github.com/elastic/elasticsearch-docker
2 FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.2
3
4 COPY config/ config/
5 COPY bin/ bin/
6 COPY my-entrypoint.sh /usr/local/bin/my-entrypoint.sh
7 RUN chmod a+x /usr/local/bin/my-entrypoint.sh
8
9 # Add your elasticsearch plugins setup here
10 # Example: RUN elasticsearch-plugin install analysis-icu
11
12 #  This custom entrypoint script is used instead of 
13 # the original's /usr/local/bin/docker-entrypoint.sh
14 ENTRYPOINT ["bash","-c","my-entrypoint.sh"]