I confirm that the following workaround works in my docker-compose.yml
:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.3.2
environment:
- "transport.host=localhost"
- "bootstrap.system_call_filter=false"
ports:
- "9200:9200"
I think the bootstrap.system_call_filter=false
might not even be necessary.