mirror of
https://github.com/bitnami/containers.git
synced 2026-03-22 15:58:21 +08:00
5.6.4-r6 release
* Several improvements:
* New Nami properties:
* bindAddress: Useful to harden security on clusters.
* isDedicatedNode: Whether the node should be configured as a dedicated node or not.
* nodeType: Elasticserach node type when using dedicated nodes.
* Remove unused property (enableRemoteConnection)
* Improve 'Print Properties message'
This commit is contained in:
@@ -3,21 +3,22 @@ LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN bitnami-pkg install java-1.8.161-0 --checksum eb289afc43eda33d5920294460dc256f6543318506ca5a540bba9073412cfd06
|
||||
RUN bitnami-pkg unpack elasticsearch-5.6.4-0 --checksum f89a4d55e04a3996f70297bbb564ec95d2ae688672624a3c0a31810408f40a6d
|
||||
RUN bitnami-pkg unpack elasticsearch-5.6.4-1 --checksum c9de15fe06ab5605e67010f1497d5f089520df6ec6548d598ebd3c2de17b99ec
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
ENV BITNAMI_APP_NAME="elasticsearch" \
|
||||
BITNAMI_IMAGE_VERSION="5.6.4-r5" \
|
||||
ELASTICSEARCH_CLIENT_NODE="" \
|
||||
BITNAMI_IMAGE_VERSION="5.6.4-r6" \
|
||||
ELASTICSEARCH_BIND_ADDRESS="" \
|
||||
ELASTICSEARCH_CLUSTER_HOSTS="" \
|
||||
ELASTICSEARCH_CLUSTER_NAME="elasticsearch-cluster" \
|
||||
ELASTICSEARCH_HEAP_SIZE="1024m" \
|
||||
ELASTICSEARCH_IS_DEDICATED_NODE="no" \
|
||||
ELASTICSEARCH_NODE_NAME="" \
|
||||
ELASTICSEARCH_NODE_PORT_NUMBER="9300" \
|
||||
ELASTICSEARCH_NODE_TYPE="master" \
|
||||
ELASTICSEARCH_PLUGINS="" \
|
||||
ELASTICSEARCH_PORT_NUMBER="9200" \
|
||||
ELASTICSEARCH_REMOTE_CONNECTION="true" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/elasticsearch/bin:$PATH"
|
||||
|
||||
EXPOSE 9200 9300
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"bindAddress": "{{$global.env.ELASTICSEARCH_BIND_ADDRESS}}",
|
||||
"clusterHosts": "{{$global.env.ELASTICSEARCH_CLUSTER_HOSTS}}",
|
||||
"clusterName": "{{$global.env.ELASTICSEARCH_CLUSTER_NAME}}",
|
||||
"enableRemoteConnection": "{{$global.env.ELASTICSEARCH_REMOTE_CONNECTION}}",
|
||||
"isClientNode": "{{$global.env.ELASTICSEARCH_CLIENT_NODE}}",
|
||||
"isDedicatedNode": "{{$global.env.ELASTICSEARCH_IS_DEDICATED_NODE}}",
|
||||
"javaHeapSize": "{{$global.env.ELASTICSEARCH_HEAP_SIZE}}",
|
||||
"nodeName": "{{$global.env.ELASTICSEARCH_NODE_NAME}}",
|
||||
"nodePort": "{{$global.env.ELASTICSEARCH_NODE_PORT_NUMBER}}",
|
||||
"nodeType": "{{$global.env.ELASTICSEARCH_NODE_TYPE}}",
|
||||
"plugins": "{{$global.env.ELASTICSEARCH_PLUGINS}}",
|
||||
"port": "{{$global.env.ELASTICSEARCH_PORT_NUMBER}}"
|
||||
}
|
||||
Reference in New Issue
Block a user