File tree 1 file changed +4
-4
lines changed
docs/reference/security/securing-communications
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ version: '2.2'
66
66
services:
67
67
create_certs:
68
68
container_name: create_certs
69
- image: docker.elastic.co/elasticsearch/elasticsearch-platinum:{version }
69
+ image: { docker-image }
70
70
command: >
71
71
bash -c '
72
72
if [[ ! -d config/certificates/certs ]]; then
@@ -103,7 +103,7 @@ version: '2.2'
103
103
services:
104
104
es01:
105
105
container_name: es01
106
- image: docker.elastic.co/elasticsearch/elasticsearch-platinum:{version }
106
+ image: { docker-image }
107
107
environment:
108
108
- node.name=es01
109
109
- discovery.zen.minimum_master_nodes=2
@@ -128,7 +128,7 @@ services:
128
128
129
129
es02:
130
130
container_name: es02
131
- image: docker.elastic.co/elasticsearch/elasticsearch:{version }
131
+ image: {docker-image }
132
132
environment:
133
133
- node.name=es02
134
134
- discovery.zen.minimum_master_nodes=2
@@ -146,7 +146,7 @@ services:
146
146
volumes: ['esdata_02:/usr/share/elasticsearch/data', './certs:$CERTS_DIR']
147
147
148
148
wait_until_ready:
149
- image: docker.elastic.co/elasticsearch/elasticsearch:{version }
149
+ image: {docker-image }
150
150
command: /usr/bin/true
151
151
depends_on: {"es01": {"condition": "service_healthy"}}
152
152
You can’t perform that action at this time.
0 commit comments