[Solved] Docker Start Error: Error response from daemon: oci runtime error: container with id exists: 7f4336393ab

Error reporting description

My docker is 1.13.1

Today, a child violently updated some libraries on the server, causing all my containers to hang up and then can’t get up. The error is as follows:

Error response from daemon: oci runtime error: container with id exists: 7f4336393abdea4ea6622f3b78b0d755a474ec74544d4b35ea652ca6dff93f46
Error: failed to start containers: 7f4336393abd

Solution:

# First step:
cd /run/runc/
# create the directory of bak
mv 7f4336393abdea4ea6622f3b78b0d755a474ec74544d4b35ea652ca6dff93f46 bak/
# Then restart
docker start 7f4336393abdea4ea6622f3b78b0d755a474ec74544d4b35ea652ca6dff93f46
# it will be fine!

Read More: