Skip to content

Instantly share code, notes, and snippets.

@apocas
Last active December 20, 2015 17:39
Show Gist options
  • Save apocas/6170410 to your computer and use it in GitHub Desktop.
Save apocas/6170410 to your computer and use it in GitHub Desktop.
docker rare bug in ~37k containers this happens ~20 times. container was created using remote api, when it sent a start request it received a 404 container does not exist.
root@research:~/nodechecker-engine# docker ps -a
ID IMAGE COMMAND CREATED STATUS PORTS
f4748f971abd apocas/nodechecker:latest bash -c ulimit -m 30 9 minutes ago Exit 0
25ccf9351662 apocas/nodechecker:latest bash -c ulimit -m 30 10 minutes ago Exit 137
root@research:~/nodechecker-engine# docker start f4748f971abd
Error: No such container: f4748f971abd
############################
NOW USING FULL IDS (SAME RESULT)
############################
root@research:~/nodechecker-engine# docker ps -a -notrunc=true
ID IMAGE COMMAND CREATED STATUS PORTS
f4748f971abdaebcd5e301f59e25d8e6b1740c38b59a2e6309107b6c57dd26b9 apocas/nodechecker:latest bash -c ulimit -m 3048576; ulimit -v 3048576; set -e; git clone https://github.com/rheisterberg/tachyon.git module; cd module; npm install; npm test; 19 minutes ago Exit 0
25ccf9351662435db557958dffeb1b6bb539515e089b7530c00200d136a887ad apocas/nodechecker:latest bash -c ulimit -m 3048576; ulimit -v 3048576; set -e; wget -O module http://registry.npmjs.org/tacify.js/-/tacify.js-0.2.0.tgz; tar -zxf module; cd package; npm install; npm test; 21 minutes ago Exit 137
root@research:~/nodechecker-engine# docker start f4748f971abdaebcd5e301f59e25d8e6b1740c38b59a2e6309107b6c57dd26b9
Error: No such container: f4748f971abdaebcd5e301f59e25d8e6b1740c38b59a2e6309107b6c57dd26b9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment