Open
Description
Hi,
This is my docker compose file.
version: '3'
services:
elastic:
image: elasticsearch:8.1.0
ports:
- 8200:9200
- 8300:9300
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- discovery.type=single-node
When I start up the container (docker-compose up -d), it does not generate the elastic user password and it also does not generate the Kibana token.
You can see the error in the log file
Auto-configuration will not generate a password for the elastic built-in superuser, ...
This is very similar to this issue
But it is supposed to be fixed and I'm also not on ARM nor M1. I'm running on Ubuntu 20.04 x86_64. This is a Linux VM (virtualbox). No shared mounts from Windows.
Log file from the container