Skip to content

Commit

Permalink
Update docker-compose.yml to fix bootstrap check error (#47650)
Browse files Browse the repository at this point in the history
Update docker-compose.yml to set the number of file descriptors to a higher
number, so as to avoid potential bootstrap errors.
  • Loading branch information
harsha-s authored and pugnascotia committed Oct 24, 2019
1 parent d1fe588 commit 9cf04c8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions distribution/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ services:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
entrypoint: /docker-test-entrypoint.sh
elasticsearch-default-2:
image: elasticsearch:test
Expand Down Expand Up @@ -80,6 +83,9 @@ services:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
entrypoint: /docker-test-entrypoint.sh
elasticsearch-oss-1:
image: elasticsearch:test
Expand All @@ -106,6 +112,9 @@ services:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
elasticsearch-oss-2:
image: elasticsearch:test
environment:
Expand Down

0 comments on commit 9cf04c8

Please sign in to comment.