Skip to content

Commit

Permalink
[DOCS] Use docker-image attribute for TLS docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpy committed Nov 27, 2018
1 parent a93f743 commit 40aa198
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -66,7 +66,7 @@ version: '2.2'
services:
create_certs:
container_name: create_certs
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
image: {docker-image}
command: >
bash -c '
if [[ ! -d config/certificates/certs ]]; then
Expand Down Expand Up @@ -103,7 +103,7 @@ version: '2.2'
services:
es01:
container_name: es01
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
image: {docker-image}
environment:
- node.name=es01
- discovery.zen.minimum_master_nodes=2
Expand All @@ -128,7 +128,7 @@ services:
es02:
container_name: es02
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
image: {docker-image}
environment:
- node.name=es02
- discovery.zen.minimum_master_nodes=2
Expand All @@ -146,7 +146,7 @@ services:
volumes: ['esdata_02:/usr/share/elasticsearch/data', './certs:$CERTS_DIR']
wait_until_ready:
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
image: {docker-image}
command: /usr/bin/true
depends_on: {"es01": {"condition": "service_healthy"}}
Expand Down

0 comments on commit 40aa198

Please sign in to comment.