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
Copy file name to clipboardExpand all lines: opensearch/docker-compose.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
services:
2
2
opensearch-node1: # This is also the hostname of the container within the Docker network (i.e. https://opensearch-node1/)
3
-
image: opensearchproject/opensearch:latest# Specifying the latest available image - modify if you want a specific version
3
+
image: opensearchproject/opensearch:2.19.3# Specifying the latest available image - modify if you want a specific version
4
4
container_name: opensearch-node1
5
5
environment:
6
6
- cluster.name=opensearch-cluster # Name the cluster
@@ -26,7 +26,7 @@ services:
26
26
networks:
27
27
- opensearch-net # All of the containers will join the same Docker bridge network
28
28
opensearch-node2:
29
-
image: opensearchproject/opensearch:latest# This should be the same image used for opensearch-node1 to avoid issues
29
+
image: opensearchproject/opensearch:2.19.3# This should be the same image used for opensearch-node1 to avoid issues
30
30
container_name: opensearch-node2
31
31
environment:
32
32
- cluster.name=opensearch-cluster
@@ -49,7 +49,7 @@ services:
49
49
networks:
50
50
- opensearch-net
51
51
opensearch-dashboards:
52
-
image: opensearchproject/opensearch-dashboards:latest# Make sure the version of opensearch-dashboards matches the version of opensearch installed on other nodes
52
+
image: opensearchproject/opensearch-dashboards:2.19.3# Make sure the version of opensearch-dashboards matches the version of opensearch installed on other nodes
53
53
container_name: opensearch-dashboards
54
54
ports:
55
55
- 5601:5601# Map host port 5601 to container port 5601
0 commit comments