Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ services:
command: ["postgres", "-c", "config_file=/etc/postgresql.conf"]

elasticsearch:
image: "docker.io/c2corg/c2corg_es:anon-2018-11-02"
build:
context: ./docker
dockerfile: Dockerfile.elasticsearch
image: c2corg_es:analysis-icu
ports:
- 9200:9200
command: -Des.index.number_of_replicas=0 -Des.path.data=/c2corg_anon -Des.script.inline=true
Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.elasticsearch
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/c2corg/c2corg_es:anon-2018-11-02

RUN /usr/share/elasticsearch/bin/plugin install --batch analysis-icu
Loading