Added ElasticSearch docker container.

So far it's just a standalone docker container, as there is no publicly
accessible Kibana container yet. To use, just SSH-tunnel port 9200.
This commit is contained in:
2017-09-18 17:38:55 +02:00
parent f3e0484328
commit 9034c36564

View File

@@ -19,6 +19,17 @@ rabbit:
restart: always
ports:
- "127.0.0.1:5672:5672"
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.0
container_name: elastic
restart: always
volumes:
# NOTE: this path must be writable by UID=1000 GID=1000.
- /data/storage/elastic:/usr/share/elasticsearch/data
ports:
- "127.0.0.1:9200:9200"
environment:
xpack.security.enabled: 'false'
blender_cloud:
image: armadillica/blender_cloud:latest
container_name: blender_cloud