Docker Compose Encountered errors while bringing up the project.

缺乏、安全感 2023-05-22 08:49 88阅读 0赞
  1. [root@flinkhadoop es]# docker-compose up -d
  2. Starting es_elasticsearch_1 ... error
  3. Starting es_kibana_1 ...
  4. Starting es_kibana_1 ... error
  5. ERROR: for es_kibana_1 Cannot start service kibana: Unknown runtime specified docker-runc
  6. ERROR: for elasticsearch Cannot start service elasticsearch: Unknown runtime specified docker-runc
  7. ERROR: for kibana Cannot start service kibana: Unknown runtime specified docker-runc
  8. ERROR: Encountered errors while bringing up the project.

因为在停止docker的时候没有把docker-compose down 。

所以执行以下

  1. [root@flinkhadoop es]# docker-compose down
  2. Removing es_elasticsearch_1 ... done
  3. Removing es_kibana_1 ... done
  4. Removing network es_default
  5. [root@flinkhadoop es]# docker-compose up -d
  6. Creating network "es_default" with the default driver
  7. Creating es_elasticsearch_1 ... done
  8. Creating es_kibana_1 ... done

感谢 https://blog.csdn.net/keineahnung2345/article/details/84670990

发表评论

表情:
评论列表 (有 0 条评论,88人围观)

还没有评论,来说两句吧...

相关阅读