You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
image: opensearchproject/opensearch-dashboards:2.11.0 # Make sure the version of opensearch-dashboards matches the version of opensearch installed on other nodes
55
+
container_name: opensearch-dashboards
56
+
ports:
57
+
- 5601:5601# Map host port 5601 to container port 5601
58
+
expose:
59
+
- "5601"# Expose port 5601 for web access to OpenSearch Dashboards
60
+
environment:
61
+
OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'# Define the OpenSearch nodes that OpenSearch Dashboards will query
0 commit comments