Skip to content

Commit 9cf04c8

Browse files
harsha-spugnascotia
authored andcommitted
Update docker-compose.yml to fix bootstrap check error (#47650)
Update docker-compose.yml to set the number of file descriptors to a higher number, so as to avoid potential bootstrap errors.
1 parent d1fe588 commit 9cf04c8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

distribution/docker/docker-compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ services:
4040
memlock:
4141
soft: -1
4242
hard: -1
43+
nofile:
44+
soft: 65536
45+
hard: 65536
4346
entrypoint: /docker-test-entrypoint.sh
4447
elasticsearch-default-2:
4548
image: elasticsearch:test
@@ -80,6 +83,9 @@ services:
8083
memlock:
8184
soft: -1
8285
hard: -1
86+
nofile:
87+
soft: 65536
88+
hard: 65536
8389
entrypoint: /docker-test-entrypoint.sh
8490
elasticsearch-oss-1:
8591
image: elasticsearch:test
@@ -106,6 +112,9 @@ services:
106112
memlock:
107113
soft: -1
108114
hard: -1
115+
nofile:
116+
soft: 65536
117+
hard: 65536
109118
elasticsearch-oss-2:
110119
image: elasticsearch:test
111120
environment:

0 commit comments

Comments
 (0)