无法在docker compose上启动容器

一旦我从配置文件中删除了老虎机.

一切都会好起来的.但我不知道老虎出了什么问题.

每台机器共享相同的图像

当我运行docker-compose时,我得到了

Cannot start container 38c203136f645a62451fbbc19bcdae0b1c31a45495e3e02588bc8182397f0e2e: [8] System error: open /proc/self/fd: no such file or directory

– docker-compose 1.2.0

jetstar:
  mem_limit: 512m
  image: newbike/firefox-standalone
  volumes:
  - "./:/project-bird"
  ports:
  - 5902
peach:
  mem_limit: 512m
  image: newbike/firefox-standalone
  volumes:
  - "./:/project-bird"
  ports:
  - 5903
scoot:
  mem_limit: 512m
  image: newbike/firefox-standalone
  volumes:
  - "./:/project-bird"
  ports:
  - 5904
tiger:
  mem_limit: 512m
  image: newbike/firefox-standalone
  volumes:
  - "./:/project-bird"
  ports:
  - 5905
vanilla:
  mem_limit: 512m
  image: newbike/firefox-standalone
  volumes:
  - "./:/project-bird"
  ports:
  - 5906

最佳答案 机会是38c203136f645a62451fbbc19bcdae0b1c31a45495e3e02588bc8182397f0e2e缓存在某个地方需要清理.当我遇到这样的问题时,我只是运行docker rm< sha>.

点赞