Docker error response from daemon no such container

I'm trying to stop and remove a docker - container. I started with docker turorial part1, now part2 from here: https://docs.docker.com/get-started/part2/#run-the-app I copied souce from there. an...

The tutorial shows:

$ docker container ls
CONTAINER ID        IMAGE               COMMAND             CREATED
1fa4ab2cf395        friendlyhello       "python app.py"     28 seconds ago

You haven’t added a name (tag) to your container, so you must use its ID to stop it:

docker container stop 1fa4ab2cf395

friendlyhello is the name of the image, not the container.

See docker run --name to give it a name.

If you don’t have a name, you will the ID with docker ps -a

The OP adds:

using docker stop 8e008ebf3ad7 its out of list using: docker container ls buts stays in list using: docker ps -a

docker stop 8e008ebf3ad7
8e008ebf3ad7
docker container ls
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS
               NAMES
5227976cb9bb        friendlyhello       "python app.py"     About an hour ago   Up About an hour    0.0.0.0:4001->80/tcp   SOMENAME

docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS
     PORTS                  NAMES
5227976cb9bb        friendlyhello       "python app.py"     About an hour ago   Up About an hour
     0.0.0.0:4001->80/tcp   SOMENAME
8e008ebf3ad7 friendlyhello "python app.py" 6 hours ago Exited (137) About an hour ago 

That is expected: a stop will put a container in an «Exited» state, which is handy when you want to debug a container which stopped without your consent!

You can then do a docker container rm <ID> in order to reomve it from the docker ps -a list.

Note that if you had launch your container with docker run --rm ..., a stop would have stopped and removed (deleted) the container directly.

@AtnNn

$ for i in `seq 10`; do docker run -d base true & done; wait
0efb018be35b
2013/07/26 19:34:30 Error: No such container: a4cad32eddcb
2013/07/26 19:34:30 Error: No such container: 350f31c1121c
2013/07/26 19:34:30 Error: No such container: 0a4371dc7d51
8178fdf5ea16
63b7ae070c19
1b7fe339819c
58d6140aa618
9f894dd1fa58
d98da270e090

$ docker version
Client version: 0.5.0-dev
Server version: 0.5.0-dev
Git commit: c01d17d
Go version: go1.1

@vieux

Can’t reproduce, could you start your daemon in debug mode and paste us the docker info output please ?

Thanks.

@AtnNn

I think it only happens when I call many docker run in parallel.

$ for i in `seq 2`; do docker -D run -d base true & done; wait
2013/07/29 11:12:16 Error: No such container: c2ada9df5af8
3081aa3d7171

Server output:

[debug] api.go:918 Calling POST /containers/create from 127.0.0.1:43979
2013/07/29 11:12:15 POST /v1.3/containers/create
[debug] api.go:918 Calling POST /containers/create from 127.0.0.1:43980
2013/07/29 11:12:15 POST /v1.3/containers/create
[debug] api.go:918 Calling POST /containers/{name:.*}/start from 127.0.0.1:43981
2013/07/29 11:12:16 POST /v1.3/containers/c2ada9df5af8/start
[debug] api.go:64 [error 404] No such container: c2ada9df5af8
[debug] api.go:918 Calling POST /containers/{name:.*}/start from 127.0.0.1:43982
2013/07/29 11:12:16 POST /v1.3/containers/3081aa3d7171/start
[debug] container.go:795 Waiting for process
[debug] container.go:808 Process finished
$ docker -D info
Containers: 5996
Images: 11
Debug mode (server): true
Debug mode (client): true
Fds: 28
Goroutines: 51
LXC Version: 0.7.5
EventsListeners: 264
Kernel Version: 3.8.0-26-generic
WARNING: No swap limit support

@AtnNn

Note that the container was created:

$ docker ps -a | grep c2ada9df5af8
c2ada9df5af8        base:latest            true                   51 minutes ago      Exit 0

@apocas

@apocas

I found something interesting. If I remove all containers except the problematic, the next start call will work.

EDIT: You don’t need to remove all containers, just do something that manipulates the container pool (create, remove, … another container) and the problematic container will be found in the next call.

@jpetazzo

Can you try with the latest release of Docker to see if the problem still happens?
Thank you!

@apocas

Docker version 0.6.4, build2f74b1c

Still happening.

@jpetazzo

Thanks a lot. Can you confirm the exact command(s) that you used to reproduce?
I tried with Docker 0.6.4 on my Ubuntu 12.04 VM, and this works fine:

for i in `seq 10`; do docker run -d base true & done; wait

@apocas

Statistically that doesn’t have impact (it happens ~ 20/30000). And if you manipulate another container, the previous one that was stuck gets unstuck. (it’s like a race condition of some sort)

I figured out the best way to reproduce this is to loop: create->start->wait->remove (one container a time)

I hacked something very quick to reproduce this consistently but till now wasn’t able to reproduce it, but it happens on production which leads me thinking it may be related with the container image since I’m using base image on tests.

If you want I can give you ssh access when this happens, it’s going to be a node from nodechecker.com so nothing critically you can mess with it :)

@jpetazzo

Hmmm, SSH access won’t help a lot (mainly because I might not be the right person to inspect that), unfortunately! :-)

If you happen to find a way to reproduce it, that would be awesome. Also, if it becomes more annoying, don’t hesitate to ping again; I’ll see with the rest of the team how we could work on that!

@sylvinus

Here is a script that can reproduce these errors with docker 0.6.7 on my vagrant box (normal mac os install path):

#!/usr/bin/env python
import multiprocessing
import os

SLEEP_TIME = 0
PARALLEL_CONTAINERS = 30
TOTAL_CONTAINERS = 1000


def run(i):
    os.system("docker run -t stackbrew/ubuntu:saucy sh -c 'sleep %s ; echo %s'" % (SLEEP_TIME, i))

if __name__ == "__main__":

  pool = multiprocessing.Pool(PARALLEL_CONTAINERS)

  pool.map(run, range(TOTAL_CONTAINERS))

If you play a bit with the parameters you can see different behaviours. I’m getting 3 kinds of errors for now:

No such container: 233603b5f5197a3003d80963f2b160d62279a9e3fdef68479d310e74b9746128
[error] commands.go:2453 Error resize: Error: bad file descriptor
2013/11/24 18:26:49 Error: create: Conflict, The name /red_sloth is already assigned to 7db618058dfb. You have to delete (or rename) that container to be able to assign /red_sloth to a container again.

Of these I think mostly the first one is important to fix asap imho: it makes docker quite unreliable when starting lots of containers (which most hosting providers will be doing I guess)

When removing the -t option, I stop getting «bad file descriptor» error but get this one instead, along with the «no such container» ones:

[error] commands.go:2415 Error receiveStdout: Unrecognized input header

Thanks!

@sylvinus

Got this new error today with another image:

Error: start: Cannot start container c55314993fff607288e27bc876e687f0ae96966b447f1d0df8e52d42fe0d87f6: 
iptables failed: iptables -I FORWARD -i docker0 -o docker0 -p tcp -s 172.17.0.122 --sport 6379 -d 172.17.0.130 -j ACCEPT: iptables: Resource temporarily unavailable.

@gravis

FYI, this is still present in docker 0.7.0.

@codeaholics

See #2911 for a whole load more errors that can occur if you run in parallel.

@sylvinus

There are less errors now but «No such container» is still happening in 0.7.1 ; Sample output of my script:

235
59
2013/12/10 11:10:30 Unrecognized input header
[error] commands.go:2399 Error receiveStdout: Unrecognized input header
136
2013/12/10 11:10:33 Error: start: No such container: df461ad15ec70994e0806dfbecd6395f41c0e4ef2da39d802f02effcc4ca3265
161
9
109
210
186
60
236

@vieux

@sylvinus

@codeaholics

@vieux, check out #2911 which documents a whole load of other error conditions which can occur.

@sylvinus

@vieux any news on this? thanks!

@sylvinus

@shykes

Tentatively scheduling for 0.8

@sylvinus

@jpallen

I’ve hit this issue in production too, and after a bit of digging, I’m pretty sure the issue is a race condition in TruncIndex. (Disclaimer: this is my first foray into Go and I only have a loose idea of the threading model). When a new container is created, the id is inserted into an instance of TruncIndex, and the following three lines update the index (lines 450-452 of utils/utils.go):

idx.ids[id] = true
idx.bytes = append(idx.bytes, []byte(id+" ")...)
idx.index = suffixarray.New(idx.bytes)

idx.index is overwritten so if two containers are created at the same time in two separate threads then it’s possible that one gets overridden by the other and one of the container ids does not appear in idx.index. The container id is then not found when trying to start the container.

Since only idx.index is updated destructively, this also explains why another update causes the container to reappear. The idx.bytes array still contains the container id, and another update will put it into idx.index correctly.

A simple solution to this would be to add a lock around the read/write methods of TruncIndex, and I’m looking into coding a test case before submitting a patch that does that. However, it might be more appropriate to refactor TruncIndex to use a data structure which doesn’t have concurrency issues. In the second case I don’t have enough Go knowledge to know what might be appropriate. Any thoughts?

@crosbymichael

@jpallen I think a RwMutex would be fine on the index.

@crosbymichael

I can no longer reproduce and the last PRs have been merged fixing the races in these areas.

@peikk0

Got this error again with docker 0.9.0:

% docker ps -a --no-trunc | head -n2
CONTAINER ID                                                       IMAGE                           COMMAND                                                                                                                                                  CREATED             STATUS              PORTS               NAMES
913d4146e09772c525ff3bbb3215100f24df4699ef7b4ab189400e57fc9d0cbc   precise-with-updates:20140320   /bin/bash                                                                                                                                                47 minutes ago      Exit 0                                  cocky_ritchie
% docker start 913d4146e09772c525ff3bbb3215100f24df4699ef7b4ab189400e57fc9d0cbc
Error: Cannot start container 913d4146e09772c525ff3bbb3215100f24df4699ef7b4ab189400e57fc9d0cbc: Container 913d4146e09772c525ff3bbb3215100f24df4699ef7b4ab189400e57fc9d0cbc not found. Impossible to mount its volumes
2014/03/20 16:08:29 Error: failed to start one or more containers

I was building an image using https://github.com/racker/docker-ubuntu-with-updates and got the error on the flatten task.

@jpetazzo

Does it happen all the time, or randomly…?
Do you have the output of the docker daemon?
If you can reproduce with the docker daemon running in debug mode (-D), the output will probably be very helpful.
Thanks!

@peikk0

It happens all the time with this particular job (others containers may start just fine). Here is the debug output from the daemon, but it doesn’t look verbose enough:

[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/20 19:08:37 POST /v1.10/containers/718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9/start
[/var/lib/docker|4d1c77fc] +job start(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9)
[/var/lib/docker|4d1c77fc] +job allocate_interface(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9)
[/var/lib/docker|4d1c77fc] -job allocate_interface(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9) = OK (0)
[/var/lib/docker|4d1c77fc] +job release_interface(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9)
[/var/lib/docker|4d1c77fc] -job release_interface(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9) = OK (0)
Cannot start container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9: Container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9 not found. Impossible to mount its volumes
[/var/lib/docker|4d1c77fc] -job start(718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9) = ERR (1)
[error] server.go:951 Error: Cannot start container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9: Container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9 not found. Impossible to mount its volumes
[error] server.go:86 HTTP Error: statusCode=406 Cannot start container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9: Container 718e930e9b3655c232a9d56f027565ec5b5ba8fcf0ac8abfac70302979283bb9 not found. Impossible to mount its volumes

The daemon is lxc-docker 0.9.0 from docker.io repositories, running on Ubuntu Server 12.04 with kernel 3.8.0-37-generic, and I got the error too with boot2docker. I reproduce it running make precise on an unaltered copy of https://github.com/racker/docker-ubuntu-with-updates or just re-running docker start <failing container> manually.

@jpetazzo

Thanks for the details, very useful.

I cleared the milestone tag since it’s still happening on 0.9.

/cc @crosbymichael (not sure who would be the right person…)

@peikk0

The problem disappeared with docker 0.10. :)

@jpetazzo

Awesome, thanks Pierre! Closing this.

@ntmggr

@maratbn

Just for the record, I received this error message just earlier this evening on:

Docker version 1.11.1, build 5604cbe on CentOS Linux release 7.2.1511 (Core), kernel 3.10.0-229.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) running inside:

VirtualBox 5.0.10 r104061 running on:

Ubuntu 16.04 LTS kernel 4.4.0-22-generic (buildd@lcy01-32) (gcc version 5.3.1 20160413 (Ubuntu 5.3.1-14ubuntu2) ) #39-Ubuntu SMP running as:

guest on libvirt 1.3.1-r1 running on:

Gentoo Linux with kernel 4.1.15-gentoo-r1

The problem did not repeat the second time the script setting up the Docker image was caused to run, so a race condition may still be in effect at least for Docker version 1.11.1

Perhaps it has a higher likelihood with nested VMs.

screenshot_2016-05-09_00-00-38--cropped

@pmcq
pmcq

mentioned this issue

Sep 9, 2016

@sauravmndl-zz

Getting same issue with docker 1.12.3

@pandaycp

I have the following error similar to above but my sever has the overlay as Storage Driver already.
Please tell me how to fix it. This issue is occurring multiple times

Error response from daemon: Cannot kill container mastercdnEmbms_9184: No such container: mastercdnEmbms_9184

$docker info
Containers: 34
Running: 23
Paused: 0
Stopped: 11
Images: 18
Server Version: 1.11.2
Storage Driver: overlay
Backing Filesystem: extfs
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: host bridge null
Kernel Version: 4.7.3-coreos-r2
Operating System: CoreOS 1185.3.0 (MoreOS)
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 31.42 GiB
Name: dockerci-cp.novalocal
ID: PEJJ:YY47:R4CD:T7NT:MRBL:LUZO:DRRU:ULFQ:74OE:W2GQ:TKOW:KSGL
Docker Root Dir: /var/lib/docker
Debug mode (client): false
Debug mode (server): false
Http Proxy: http://10.175.250.81:8080
Https Proxy: http://10.175.250.81:8080
No Proxy: cnshdocker.sh.cn.ao.ericsson.se
Registry: https://index.docker.io/v1/

$uname -a
Linux dockerci-cp.novalocal 4.7.3-coreos-r2 #1 SMP Tue Nov 1 01:38:43 UTC 2016 x86_64 Intel Xeon E312xx (Sandy Bridge) GenuineIntel GNU/Linux

@thaJeztah

@pandaycp docker 1.11.2 has reached EOL over a year ago, and there’s not a lot of information in your comment to work with (also note that CoreOS is not a supported platform; issues with those packages should be reported with CoreOS, who maintains those).

You’re commenting on an issue that’s almost 5 years old, and was reported with a completely different code-base and runtime, so any issue you run into with a current version of Docker is likely not related.

Keep in mind that the GitHub issue tracker is not intended as a general support forum,
but for reporting bugs and feature requests. For other type of questions, consider using one of;

  • the Docker Support Forums — https://forums.docker.com
  • the Docker community Slack channel (register here: http://dockr.ly/community)
  • StackOverflow

I’m locking the conversation on this issue because of the above, and to prevent it from collecting unrelated issues.

If you arrive on this issue because you’re encountering a problem on a current version, and suspect there’s a bug at hand, please open a new issue, providing the information that’s requested in the issue template.

@moby
moby

locked and limited conversation to collaborators

Oct 25, 2017

I Built an image using flask, nginx and uwsgi.

FROM ubuntu:14.04
MAINTAINER Ali Mezgani <xxxxxxxxx@gmail.com>

RUN apt-get update && apt-get -y install python python-dev  python-pip
RUN apt-get -y install supervisor
RUN apt-get -y install  nginx

COPY ./app /app

RUN mkdir /var/log/uwsgi/

RUN pip install -r ./app/requirements.txt

RUN rm -fr /etc/nginx/conf.d/*
RUN rm -fr /etc/nginx/sites-enabled/*

COPY app.conf /etc/supervisor/conf.d/app.conf

RUN echo "daemon off;" >> /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/sites-enabled/app.conf

expose 80
CMD ["supervisord", "-n"]
CMD ["nginx"]

Here is the output I get when I try ti start the myapp container.

root@cygne:/data/flask# docker start myapp
Error response from daemon: No such container: myapp
Error: failed to start containers: myapp

And finally here is the status of images I have.

root@cygne:/data/flask# docker images -a
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
<none>              <none>              91c4b97dc883        10 hours ago        434.1 MB
myapp               latest              3b9dd7cc7006        10 hours ago        434.1 MB
<none>              <none>              28f96039d2da        10 hours ago        434.1 MB
<none>              <none>              dbd7d20bb041        10 hours ago        434.1 MB
<none>              <none>              f29621c65c25        10 hours ago        434.1 MB
<none>              <none>              7d6d99d831c4        10 hours ago        434.1 MB
<none>              <none>              948cc751026f        10 hours ago        434.1 MB
<none>              <none>              afc13c68670c        10 hours ago        434.1 MB
<none>              <none>              90733b74c1ff        10 hours ago        434.1 MB
<none>              <none>              f8252e26afe5        10 hours ago        424.4 MB
<none>              <none>              4b16f8a9bfbb        10 hours ago        424.4 MB
<none>              <none>              126961e5d0b2        10 hours ago        418.6 MB
<none>              <none>              713635425c68        10 hours ago        400.1 MB
<none>              <none>              0755786fa8dc        10 hours ago        396.2 MB
<none>              <none>              3bc29edbc3a3        10 hours ago        188 MB
ubuntu              14.04               8f1bd21bd25c        3 weeks ago         188 MB
mysql               5.7                 2fd136002c22        3 weeks ago         378.4 MB

The container wont start, and I’ve tried many process like cleaning cache, restarting docker.
Here is what I have in my syslog :

localhost docker[6111]: time="2016-06-18T15:06:12.826760681Z" level=error msg="Handler for GET /v1.23/containers/myapp/json returned error: No such container: myapp"

Skip to content



Open


Issue created Jul 02, 2018 by linh nguyen@linh-bio

docker: Error response from daemon: No such container: runner-

Summary

I use gitlab-runner to build my app with the command

docker run --rm --name my-maven-project --volumes-from "${HOSTNAME}-build" -v "$PWD":/usr/src/app -w /usr/src/app maven:alpine mvn clean compile package -P uat -U -DskipTests -f server/app/pom.xml

and the runner get successful if the gitlab-runner use images lower than 10.3.0 or image ubuntu-v10.3.0

`
Running with gitlab-runner 10.3.0 (5cf5e19a)
on runner 4.38 (8c4bef75)

okJob succeeded

`

but if the gitlab-runner use images greater than 10.3.0 such as latest, v10.60, the runner get an error

Running with gitlab-runner 11.0.0 (5396d320) on runner 4.38 8c4bef75 .... docker: Error response from daemon: No such container: runner-8c4bef75-project-88-concurrent-0-build. See 'docker run --help'. ERROR: Job failed: exit code 125

Steps to reproduce

  1. Start docker-composer with docker-compose.yml like that
version: '3.2'
services:
  my-runner:
    container_name: debian9
    image: 'gitlab/gitlab-runner:ubuntu-v10.3.0'
    restart: always
    volumes:

gitlab use this runner to build app successfully

  1. Edit docker-composer with docker-compose.yml like that
version: '3.2'
services:
  my-runner:
    container_name: debian9
    image: 'gitlab/gitlab-runner:latest'
    restart: always
    volumes:

gitlab use this runner and get the error as mentioned above.

Expected behavior

can use latest version of gitlab-runner to build app.

Environment description

Containers: 3
Running: 0
 Paused: 0
 Stopped: 3
Images: 53
Server Version: 17.06.0-ce
Storage Driver: aufs
 Root Dir: /home/docker-data/aufs
 Backing Filesystem: extfs
 Dirs: 190
 Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins: 
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: cfb82a876ecc11b5ca0977d1733adbe58599088a
runc version: 2d41c047c83e09a6d61d464906feb2a2f3c52aa4
init version: 949e6fa
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.9.0-3-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 3.863GiB
Name: debian9.

Used GitLab Runner version

Running with gitlab-runner 11.0.0 (5396d320)
on runner 4.38 8c4bef75
Running with gitlab-runner 10.3.0 (5cf5e19a)
on runner 4.38 (8c4bef75)

Понравилась статья? Поделить с друзьями:
  • Docker error response from daemon no command specified
  • Docker error response from daemon no build stage in current context
  • Docker error response from daemon mkdir
  • Docker error response from daemon manifest for
  • Docker error response from daemon get https registry 1 docker io v2