简体   繁体   中英

Cannot start container on docker compose

Once I removed tiger machine from the config file.

Everything will go well. But I don't get what wrong with the tiger.

Each machine share with the same image

When I ran docker-compose up , I got

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

Chances are 38c203136f645a62451fbbc19bcdae0b1c31a45495e3e02588bc8182397f0e2e is cached somewhere and need to be clean. When I face such issues, I just run docker rm <sha> .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM