OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
综上就是 ES 分配的内存不够用, 导致无法启动. ES 是一个特别吃内存的一个服务. 所以我们在启动的时候要根据自身服务器分配相应的内存
docker run -d -e "ES_JAVA_OPTS=-Xms64m -Xmx251m" --name es2 -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.6.2```