Clarification around Docker Compose and Dashboards
This commit is contained in:
parent
d3a26b8353
commit
8ee083b6d2
|
@ -93,8 +93,7 @@ services:
|
||||||
expose:
|
expose:
|
||||||
- "5601"
|
- "5601"
|
||||||
environment:
|
environment:
|
||||||
OPENSEARCH_URL: https://opensearch-node1:9200
|
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]' # must be a string with no spaces when specified as an environment variable
|
||||||
OPENSEARCH_HOSTS: https://opensearch-node1:9200
|
|
||||||
volumes:
|
volumes:
|
||||||
- ./custom-opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml
|
- ./custom-opensearch_dashboards.yml:/usr/share/opensearch-dashboards/config/opensearch_dashboards.yml
|
||||||
networks:
|
networks:
|
||||||
|
|
|
@ -138,7 +138,7 @@ services:
|
||||||
expose:
|
expose:
|
||||||
- "5601"
|
- "5601"
|
||||||
environment:
|
environment:
|
||||||
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
|
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]' # must be a string with no spaces when specified as an environment variable
|
||||||
networks:
|
networks:
|
||||||
- opensearch-net
|
- opensearch-net
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue