diff options
| -rw-r--r-- | extra/docker/docker-compose.yml | 15 | ||||
| -rw-r--r-- | extra/docker/elasticsearch/Dockerfile | 9 | 
2 files changed, 24 insertions, 0 deletions
| diff --git a/extra/docker/docker-compose.yml b/extra/docker/docker-compose.yml new file mode 100644 index 0000000..514aefe --- /dev/null +++ b/extra/docker/docker-compose.yml @@ -0,0 +1,15 @@ +version: '2' +services: +  elasticsearch: +    build: ./elasticsearch/ +    ports: +      - "9200:9200" +      - "9300:9300" +    environment: +      cluster.name: "docker-cluster" +      bootstrap.memory_lock: "true" +      discovery.type: "single-node" +      cluster.routing.allocation.disk.watermark.low: "500mb" +      cluster.routing.allocation.disk.watermark.high: "500mb" +      cluster.routing.allocation.disk.watermark.flood_stage: "100mb" +      ES_JAVA_OPTS: "-Xms512m -Xmx512m" diff --git a/extra/docker/elasticsearch/Dockerfile b/extra/docker/elasticsearch/Dockerfile new file mode 100644 index 0000000..13d641a --- /dev/null +++ b/extra/docker/elasticsearch/Dockerfile @@ -0,0 +1,9 @@ +FROM docker.elastic.co/elasticsearch/elasticsearch:6.4.2 + +RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install --batch analysis-icu + +# This part doesn't work because elastic isn't actually running at this point +# in boot. Don't know enough Docker to figure out how to make this work at +# build time. +#COPY --chown=elasticsearch:elasticsearch release_schema.json /release_schema.json +#RUN curl http://127.0.0.1:9200/fatcat --upload-file /release_schema.json | 
