Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Error resize: Error: bad file descriptor" using docker provided vagrant VM #2683

Closed
aidanhs opened this issue Nov 13, 2013 · 36 comments
Closed

Comments

@aidanhs
Copy link
Contributor

aidanhs commented Nov 13, 2013

I'm using docker v0.6.6, Vagrant 1.3.5, virtualbox 4.1.24 and the docker vagrantfile (with some minor modifications to forward some ports).

Steps to reproduce:

git clone https://github.com/dotcloud/docker.git
git checkout v0.6.6
vagrant up
vagrant ssh
sudo su
docker pull ubuntu
docker run -t -i -h=test1 8db /bin/bash -c true
while true; do docker run -t -i -h=test1 8db /bin/bash -c true && echo done && sleep 1; done

the last line just repeats docker run -t -i -h=test1 8db /bin/bash -c true.

It takes a few (say 10-15) repetitions before it gets there, but when it does:

[error] commands.go:2044 Error resize: Error: bad file descriptor

I've seen other mentions of vaguely similar error message (mainly in relation to upgrading lxc) but this is a fresh docker vagrant VM...shouldn't be any issues I wouldn't think? It wouldn't be so bad it if consistently errored, but this inconsistency is quite unhelpful.

@aidanhs
Copy link
Contributor Author

aidanhs commented Nov 13, 2013

Apparently removing '-t' means it doesn't break.

@srid
Copy link
Contributor

srid commented Nov 27, 2013

i'm seeing this with docker 0.7.0 if -t is passed.

@aidanhs
Copy link
Contributor Author

aidanhs commented Nov 27, 2013

@srid are you using the Vagrant VM as well? Or do you have docker directly installed?

@srid
Copy link
Contributor

srid commented Nov 28, 2013

i'm running docker under vmware fusion VM.

@unclejack
Copy link
Contributor

@aidanhs @srid Are you still running into this problem with Docker 0.7.1?

@Hakon
Copy link

Hakon commented Dec 23, 2013

I'm seeing an issue like this on a VM (running on KVM) with Docker 0.7.2:

root@test1:~# docker -v
Docker version 0.7.2, build 28b162e
root@test1:~# uname -r
3.8.0-34-generic
root@test1:~# docker run -t ubuntu /bin/echo hello world
lxc-start: inherited fd 23 on socket:[8276]
[error] commands.go:2462 Error resize: Error: resize: bad file descriptor

@jamtur01
Copy link
Contributor

Seeing the same thing:

# docker -v
Docker version 0.7.2, build 28b162e

# uname -r
3.8.0-29-generic

# docker run -t ubuntu /bin/echo hello world
hello world
[error] commands.go:2462 Error resize: Error: resize: bad file descriptor

lxc version is 0.7.5-3ubuntu69.

Also goes away if I drop the -t.

@aidanhs
Copy link
Contributor Author

aidanhs commented Jan 3, 2014

Definitely still a problem - easily reproducible with the steps in the issue report at the top.

@aidanhs
Copy link
Contributor Author

aidanhs commented Jan 10, 2014

Less frequently in 0.7.5 (0.7.2 was doing it every time), different error message
[error] commands.go:2458 Error getting size: bad file descriptor
Which is the same as #3485

@aidanhs
Copy link
Contributor Author

aidanhs commented Jan 23, 2014

The suggestion from #3595 (install cgroup-lite) hasn't worked for me, it's already installed on the vagrant vm docker comes with.

@jultan
Copy link

jultan commented Jan 28, 2014

Check cgroup fs mount.

# echo "cgroup /sys/fs/cgroup cgroup defaults 0 0" >> /etc/fstab
# mount /sys/fs/cgroup

solved things for me...

@lukebond
Copy link

lukebond commented Feb 2, 2014

as per @aidanhs the #3595 suggestion didn't work for me, but @jultan's suggestion above did.

@unclejack
Copy link
Contributor

Please try PR #3557 and let me know if you're still running into problems with those changes.

@aidanhs
Copy link
Contributor Author

aidanhs commented Feb 7, 2014

I have tried with 0.8.0 (which includes the PR above). It does it (breaks) nearly every time now.

jultan's suggestion didn't work on 0.8.0 (even after a VM reboot). I didn't test his suggestion on 0.7.5.

$ docker run -t -i -h=test1 3aa64 /bin/bash -c true
[error] commands.go:2547 Error resize: Error: resize: bad file descriptor

Where 3aa64 is stackbrew/ubuntu:12.04

@neeravkumar
Copy link

I have started seeing this problem only after installing 0.8.0 recently with boot2docker 0.5.4.

@ghost
Copy link

ghost commented Feb 14, 2014

Docker version 0.8.0, build cc3a8c8 here running on Ubuntu Precise, same error

I had to apply jultan fix to get rid of this issue.

@lightsofapollo
Copy link
Contributor

Seeing this on 0.9 after upgrading from 0.8

client.go:2315 Error resize: Error: bad file descriptor

@crosbymichael
Copy link
Contributor

Can you try running without -t to see if there are other errors?

@extraordinaire
Copy link

Seeing this as well. Running ubuntu 13.10 64bit in vagrant.

Docker version 0.9.0, build 2b3fdf2

[later edit]
Found a fix:

apt-get install cgroup-lite
umount anything cgroup (grep /proc/mount cgroup)
sudo restart docker

@tianon
Copy link
Member

tianon commented Mar 11, 2014

Anyone/everyone running into this on Ubuntu should test out:

sudo wget -O /etc/init/docker.conf https://raw.github.com/dotcloud/docker/master/contrib/init/upstart/docker.conf
sudo service docker restart

and comment on #4574 if it fixes the problem for you.

If you're on Debian, you should instead use something like:

sudo wget -O /etc/init.d/docker https://raw.github.com/dotcloud/docker/master/contrib/init/sysvinit-debian/docker
sudo chmod +x /etc/init.d/docker
sudo service docker restart

(SvenDowideit updated the URLs to the new merged version)

@timthelion
Copy link
Contributor

This may have actually broken things for me(edit: when I wrote that, I thought that the merged PR actually effected me, now I see that it only changed the startup scripts which I'm not even running...)(Debian Wheezy, kernel from backports). I had docker working(0.8 something) but I just tried downloading the latest binary and I get the following output:

timothy@timothy:~$ docker version
Client version: 0.9.0
Go version (client): go1.2.1
Git commit (client): 2b3fdf2
Server version: 0.9.0
Git commit (server): 2b3fdf2
Go version (server): go1.2.1
Last stable version: 0.9.0
timothy@timothy:~$ uname -a
Linux timothy 3.12-0.bpo.1-amd64 #1 SMP Debian 3.12.9-1~bpo70+1 (2014-02-07) x86_64 GNU/Linux
timothy@timothy:~$ docker run -i -t --rm ubuntu echo hi
Unable to find image 'ubuntu' locally
Pulling repository ubuntu
9f676bd305a4: Download complete 
9cd978db300e: Download complete 
eb601b8965b8: Download complete 
5ac751e8d623: Download complete 
9cc9ea5ea540: Download complete 
511136ea3c5a: Download complete 
321f7f4200f4: Download complete 
7a4f87241845: Download complete 
f323cf34fd77: Download complete 
6170bb7b0ad1: Download complete 
1c7f181e78b9: Download complete 
[error] client.go:2315 Error resize: Error: bad file descriptor
timothy@timothy:~$ docker run -i -t --rm ubuntu echo hi
[error] client.go:2315 Error resize: Error: bad file descriptor
                                                               timothy@timothy:~$ docker run -i -t --rm ubuntu echo hi
[error] client.go:2298 Error getting size: bad file descriptor
2014/03/12 11:30:07 Error: Cannot destroy container c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: Driver aufs failed to remove root filesystem c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: rename /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474 /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474-removing: device or resource busy
timothy@timothy:~$ docker run -i -t --rm ubuntu echo hi
[error] client.go:2315 Error resize: Error: bad file descriptor
                                                               2014/03/12 11:30:11 Error: Cannot destroy container b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: Driver aufs failed to remove root filesystem b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: rename /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d-removing: device or resource busy

Without -t I get neither error nor output:

timothy@timothy:~$ docker run -i --rm ubuntu echo hi
timothy@timothy:~$ 

Here is what it looks like on the server side:

root@timothy:/var/lib# rm -r docker
root@timothy:/var/lib# cd
root@timothy:~# /home/timothy/bin/docker  -d -D -H=unix:///var/run/docker.sock -H=tcp://127.0.0.1:4343
[/var/lib/docker|72c081df] +job serveapi(unix:///var/run/docker.sock, tcp://127.0.0.1:4343)
[/var/lib/docker|72c081df] +job initserver()
[/var/lib/docker|72c081df.initserver()] Creating server
2014/03/12 11:27:38 Listening for HTTP on unix (/var/run/docker.sock)
[debug] server.go:1037 Registering GET, /version
[debug] server.go:1037 Registering GET, /containers/ps
2014/03/12 11:27:38 Listening for HTTP on tcp (127.0.0.1:4343)
[debug] server.go:1037 Registering GET, /images/search
[debug] server.go:1037 Registering GET, /containers/json
[debug] server.go:1037 Registering GET, /containers/{name:.*}/export
[debug] server.go:1037 Registering GET, /containers/{name:.*}/json
[debug] server.go:1037 Registering GET, /containers/{name:.*}/attach/ws
[debug] server.go:1037 Registering GET, /info
[debug] server.go:1037 Registering GET, /version
[debug] server.go:1037 Registering GET, /images/viz
[debug] server.go:1037 Registering GET, /containers/ps
[debug] server.go:1037 Registering GET, /containers/{name:.*}/top
[debug] server.go:1037 Registering GET, /events
[debug] server.go:1037 Registering GET, /images/json
[debug] server.go:1037 Registering GET, /images/{name:.*}/get
[debug] server.go:1037 Registering GET, /images/{name:.*}/history
[debug] server.go:1037 Registering GET, /images/{name:.*}/json
[debug] server.go:1037 Registering GET, /containers/{name:.*}/changes
[debug] server.go:1037 Registering POST, /commit
[debug] server.go:1037 Registering POST, /images/create
[debug] server.go:1037 Registering POST, /images/load
[debug] server.go:1037 Registering POST, /images/{name:.*}/push
[debug] server.go:1037 Registering POST, /images/{name:.*}/tag
[debug] server.go:1037 Registering POST, /images/{name:.*}/insert
[debug] server.go:1037 Registering POST, /containers/{name:.*}/restart
[debug] server.go:1037 Registering POST, /containers/create
[debug] server.go:1037 Registering POST, /containers/{name:.*}/kill
[debug] server.go:1037 Registering POST, /containers/{name:.*}/start
[debug] server.go:1037 Registering POST, /containers/{name:.*}/stop
[debug] server.go:1037 Registering POST, /containers/{name:.*}/resize
[debug] server.go:1037 Registering POST, /auth
[debug] server.go:1037 Registering POST, /build
[debug] server.go:1037 Registering POST, /containers/{name:.*}/wait
[debug] server.go:1037 Registering POST, /containers/{name:.*}/attach
[debug] server.go:1037 Registering GET, /containers/{name:.*}/changes
[debug] server.go:1037 Registering POST, /containers/{name:.*}/copy
[debug] server.go:1037 Registering DELETE, /containers/{name:.*}
[debug] server.go:1037 Registering DELETE, /images/{name:.*}
[debug] server.go:1037 Registering OPTIONS, 
[debug] server.go:1037 Registering GET, /events
[debug] server.go:1037 Registering GET, /images/search
[debug] server.go:1037 Registering GET, /images/{name:.*}/get
[debug] server.go:1037 Registering GET, /images/{name:.*}/history
[debug] server.go:1037 Registering GET, /containers/json
[debug] server.go:1037 Registering GET, /containers/{name:.*}/export
[debug] server.go:1037 Registering GET, /containers/{name:.*}/json
[debug] server.go:1037 Registering GET, /info
[debug] server.go:1037 Registering GET, /images/viz
[debug] server.go:1037 Registering GET, /containers/{name:.*}/top
[debug] server.go:1037 Registering GET, /images/json
[debug] server.go:1037 Registering GET, /images/{name:.*}/json
[debug] server.go:1037 Registering GET, /containers/{name:.*}/attach/ws
[debug] server.go:1037 Registering POST, /build
[debug] server.go:1037 Registering POST, /containers/{name:.*}/restart
[debug] server.go:1037 Registering POST, /containers/{name:.*}/wait
[debug] server.go:1037 Registering POST, /containers/{name:.*}/attach
[debug] server.go:1037 Registering POST, /containers/{name:.*}/copy
[debug] server.go:1037 Registering POST, /commit
[debug] server.go:1037 Registering POST, /images/{name:.*}/tag
[debug] server.go:1037 Registering POST, /containers/create
[debug] server.go:1037 Registering POST, /containers/{name:.*}/kill
[debug] server.go:1037 Registering POST, /containers/{name:.*}/stop
[debug] server.go:1037 Registering POST, /containers/{name:.*}/resize
[debug] server.go:1037 Registering POST, /auth
[debug] server.go:1037 Registering POST, /images/{name:.*}/insert
[debug] server.go:1037 Registering POST, /images/create
[debug] server.go:1037 Registering POST, /images/load
[debug] server.go:1037 Registering POST, /images/{name:.*}/push
[debug] server.go:1037 Registering POST, /containers/{name:.*}/start
[debug] server.go:1037 Registering DELETE, /containers/{name:.*}
[debug] server.go:1037 Registering DELETE, /images/{name:.*}
[debug] server.go:1037 Registering OPTIONS, 
[debug] server.go:1127 docker group found. gid: 1001
[debug] runtime.go:645 Using graph driver aufs
[debug] runtime.go:654 Migrating existing containers
[debug] runtime.go:660 Creating images graph
[debug] graph.go:62 Restored 0 elements
[debug] runtime.go:672 Creating volumes graph
[debug] graph.go:62 Restored 0 elements
[debug] runtime.go:677 Creating repository list
[/var/lib/docker|72c081df] +job init_networkdriver()
[/var/lib/docker|72c081df.init_networkdriver()] creating new bridge for docker0
[debug] driver.go:253 Creating bridge docker0 with network 172.17.42.1/16
[/var/lib/docker|72c081df.init_networkdriver()] getting iface addr
[DEBUG] [iptables]: /sbin/iptables, [-C POSTROUTING -t nat -s 172.17.42.1/16 ! -d 172.17.42.1/16 -j MASQUERADE]
[DEBUG] [iptables]: /sbin/iptables, [-I POSTROUTING -t nat -s 172.17.42.1/16 ! -d 172.17.42.1/16 -j MASQUERADE]
[DEBUG] [iptables]: /sbin/iptables, [-D FORWARD -i docker0 -o docker0 -j DROP]
[DEBUG] [iptables]: /sbin/iptables, [-C FORWARD -i docker0 -o docker0 -j ACCEPT]
[debug] driver.go:180 Enable inter-container communication
[DEBUG] [iptables]: /sbin/iptables, [-I FORWARD -i docker0 -o docker0 -j ACCEPT]
[DEBUG] [iptables]: /sbin/iptables, [-C FORWARD -i docker0 ! -o docker0 -j ACCEPT]
[DEBUG] [iptables]: /sbin/iptables, [-I FORWARD -i docker0 ! -o docker0 -j ACCEPT]
[DEBUG] [iptables]: /sbin/iptables, [-C FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT]
[DEBUG] [iptables]: /sbin/iptables, [-I FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -D PREROUTING -m addrtype --dst-type LOCAL -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -D OUTPUT -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -D OUTPUT -m addrtype --dst-type LOCAL -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -D PREROUTING -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -D OUTPUT -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -F DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -X DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -N DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER]
[DEBUG] [iptables]: /sbin/iptables, [-t nat -A OUTPUT -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER]
[/var/lib/docker|72c081df] -job init_networkdriver() = OK (0)
2014/03/12 11:27:39 WARNING: cgroup mountpoint not found for memory
[/var/lib/docker|72c081df.initserver()] Creating pidfile
[/var/lib/docker|72c081df.initserver()] Setting up signal traps
[/var/lib/docker|72c081df] -job initserver() = OK (0)
[/var/lib/docker|72c081df] +job acceptconnections()
[/var/lib/docker|72c081df] -job acceptconnections() = OK (0)
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:27:55 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
No such image: ubuntu (tag: latest)
[/var/lib/docker|72c081df] -job create() = ERR (1)
[error] server.go:951 Error: No such image: ubuntu (tag: latest)
[error] server.go:86 HTTP Error: statusCode=404 No such image: ubuntu (tag: latest)
[debug] server.go:925 Calling POST /images/create
2014/03/12 11:27:55 POST /v1.10/images/create?fromImage=ubuntu&tag=
[/var/lib/docker|72c081df] +job pull(ubuntu, )
[debug] registry.go:316 [registry] Calling GET https://index.docker.io/v1/repositories/ubuntu/images
[debug] http.go:168 https://index.docker.io/v1/repositories/ubuntu/images -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] server.go:1129 Retrieving the tag list
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/repositories/library/ubuntu/tags -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] registry.go:290 Got status code 200 from https://cdn-registry-1.docker.io/v1/repositories/library/ubuntu/tags
[debug] server.go:1144 Registering tags
[debug] server.go:1171 Image (id: f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 46e4dee27895629af45836e568044a8c27a27bedf4cd5a456fc345cf4c0c622d) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 476aa49de6365ac4431cc268f7d760b7c5d96708652278eb1348bc721ec82d97) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 5e94ff221e9185421e0bdf9ae35ab486d6336ae0b04a6d66dfb77fea7d25b17a) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 721f07d19f96ab91a200dd26380d2c9f094af8c24323bf324083c62285fe9d84) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 04180f9bd8a64416e9dbb43ae03727e15db3f13be2b415ab6ed889dfbbc35822) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 27cf784147099545) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 426130da57f793abb9b75eae6e4064cfdf0a1f124fabc51615460db7f885c28f) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 72e10143e54ab6ddfc651515f14a67327e94d134908cea1b5aaa846c92c12a1e) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 86f6383454b44f8b63fcdc9067999ad80f268ce37c0f745f78b69d9784f2470e) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: b74728ce6435943c0ace1a90649f136c904b1c412f556a95bb1b812457aabd76) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: d5fa19f5baa5c5eabbb522be0c340667d3fb1cbbce7b911a7f08d1df91028a9d) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 1e548c932d40b619fde740e0b1e832a0ca78276344209d7e85221281a9cb2c28) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 8589d4e9c7c6b2aefc15018e63e9042a2c167644d61db6d5aa0eea0a8d655395) present in this repository but untagged, skipping
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e/ancestry -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] server.go:1171 Image (id: 08d9de2104cf21241ae7d6fb96ea8cff48b8b64fd781e29579a342cea5eeeb59) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 1957a8106a4c75233f45f745c5440b646c50ab1d26932b19383776f5322e27bb) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 1f68bfad94ccd9245098dedc6b098eb5582f0606b0ffe6f3aae92381d7253ed7) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311) present in this repository but untagged, skipping
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6/ancestry -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c/ancestry -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] server.go:1171 Image (id: 3144b2b7e711b6fee27d5b81fec2092b6d3b2d2eddd1ec4a855f2383892bb275) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: b3cc9240d8e938a670c6c80626896b182936c9953e150c4cbdcc8046bc09666e) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 3e47bae8d07a2080654e509d47ac2858f31206716e139145ed09279f9a9b0ff9) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: d9b82e74c91321dc63c492d68e79f2592640970a8f6f7dd508394d04bc0175c4) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 43461fe97ba110bad60d4366945d9ee98dd6b8eef2104ebd347ad7ec22a91b34) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158) present in this repository but untagged, skipping
[debug] server.go:1171 Image (id: 8dbd9e392a964056420e5d58ca5cc376ef18e2de93b5cc90e868a1bbc8318c1c) present in this repository but untagged, skipping
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232/ancestry -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794/ancestry -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] registry.go:197 Ancestry: [
    "5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794",
    "321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5",
    "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] registry.go:197 Ancestry: [
    "9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232",
    "7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4",
    "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
]
[error] server.go:1083 Image (id: 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158) pull is already running, skipping: pull layer:511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 is already in progress
[debug] registry.go:197 Ancestry: [
    "eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c",
    "f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd",
    "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
]
[error] server.go:1083 Image (id: 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158) pull is already running, skipping: pull layer:511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 is already in progress
[debug] registry.go:197 Ancestry: [
    "9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6",
    "6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311",
    "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
]
[error] server.go:1083 Image (id: 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158) pull is already running, skipping: pull layer:511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 is already in progress
[debug] registry.go:197 Ancestry: [
    "9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e",
    "1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077",
    "511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"
]
[error] server.go:1083 Image (id: 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158) pull is already running, skipping: pull layer:511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 is already in progress
[debug] image.go:312 Json string: {{"id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","comment":"Imported from -","created":"2013-06-13T14:03:50.821769-07:00","container_config":{"Hostname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Dns":null,"Image":"","Volumes":null,"VolumesFrom":""},"docker_version":"0.4.0","architecture":"x86_64"}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","parent":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","created":"2014-02-03T17:26:44.006400233Z","container":"9909d49b9b513412f6978f1da00439b8e4390a64c4b15141e7ead727d5458ef8","container_config":{"Hostname":"9909d49b9b51","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) MAINTAINER Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t quantal.tar.xz quantal http://archive.ubuntu.com/ubuntu/"],"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t quantal.tar.xz quantal http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"9909d49b9b51","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794","parent":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","created":"2014-02-03T17:26:53.68924286Z","container":"c7bfabd79e1e9305f9ae1f5f7822b209e48f4c3cfe8eaad93a23cbb666f0d009","container_config":{"Hostname":"9909d49b9b51","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) ADD quantal.tar.xz in /"],"Dns":null,"Image":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t quantal.tar.xz quantal http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"9909d49b9b51","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"321f7f4200f444a0ba37aa7bcf35d2776f7f28958ed1cfe79b5108c62a9c1ab5","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/5ac751e8d62391dab7b5e795e949e74e7053eb443f819cb35e6bd23fe847a794/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","parent":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","created":"2014-01-22T20:49:24.069856473Z","container":"0123e1f75a756ee52a4c628d7682e04f4c3a472b7e6d67e9472c3698e5ae702c","container_config":{"Hostname":"0123e1f75a75","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) MAINTAINER Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t lucid.tar.xz lucid http://archive.ubuntu.com/ubuntu/"],"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t lucid.tar.xz lucid http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"0123e1f75a75","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","parent":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","created":"2014-02-03T17:28:49.137618793Z","container":"2e6920a5d25b36e836b267d7eee8ccf20655ebff95937b94bdf30f7439bfb18a","container_config":{"Hostname":"2e6920a5d25b","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) MAINTAINER Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t raring.tar.xz raring http://archive.ubuntu.com/ubuntu/"],"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t raring.tar.xz raring http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"2e6920a5d25b","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","parent":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","created":"2014-02-03T17:31:03.23817072Z","container":"5b46b2136d5c377bd7b1dc96769848fc4349ee0c3695e417ed7cb412965d0d3d","container_config":{"Hostname":"5b46b2136d5c","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) MAINTAINER Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t saucy.tar.xz saucy http://archive.ubuntu.com/ubuntu/"],"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t saucy.tar.xz saucy http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"5b46b2136d5c","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","parent":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","created":"2014-02-03T17:22:14.26577562Z","container":"bfcc161f00da479b347fb50b6e71cadd9504a7f954c77517cb066f6d054042ff","container_config":{"Hostname":"bfcc161f00da","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) MAINTAINER Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t precise.tar.xz precise http://archive.ubuntu.com/ubuntu/"],"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t precise.tar.xz precise http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"bfcc161f00da","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6/json -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e","parent":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","created":"2014-02-03T17:31:16.965493487Z","container":"c6def7dca4284e3e8dc8cca9d78282774bf6bbd53f968b2adf5e1c3777ab8c52","container_config":{"Hostname":"5b46b2136d5c","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) ADD saucy.tar.xz in /"],"Dns":null,"Image":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t saucy.tar.xz saucy http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"5b46b2136d5c","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"1c7f181e78b90d347996d754ffa38c4c6b395e7cf0388bffffbda00365b45077","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9f676bd305a43a931a8d98b13e5840ffbebcd908370765373315926024c7c35e/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c","parent":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","created":"2014-02-03T17:28:59.957467682Z","container":"db8d970a2693ca54a78e051a067a8cf7b299e74c793a7aae2aa667a890bc6ec6","container_config":{"Hostname":"2e6920a5d25b","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) ADD raring.tar.xz in /"],"Dns":null,"Image":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t raring.tar.xz raring http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"2e6920a5d25b","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"f323cf34fd7797580c96f45c6b59c4c0704e0ecbc3504e986589c4039681c4fd","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/eb601b8965b806e798674245307e091b8ac3cdb9fb522aebaa6ac593df8b6b3c/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] image.go:312 Json string: {{"id":"9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232","parent":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","created":"2014-02-03T17:25:01.646128932Z","container":"411879f48fc516b93b78e911be35c35c694cf3f04d320b3b2f9815d3d1c32dab","container_config":{"Hostname":"411879f48fc5","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) ADD lucid.tar.xz in /"],"Dns":null,"Image":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t lucid.tar.xz lucid http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"411879f48fc5","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"7a4f8724184531b88441f95d0a12e47e0791aaedf4ef122b5464da54f38973d4","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cc9ea5ea540116b89e41898dd30858107c1175260fb7ff50322b34704092232/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] image.go:312 Json string: {{"id":"9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6","parent":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","created":"2014-02-03T17:22:29.795676965Z","container":"99f9d828ac510640473238f0ee5e0ee0bc409ce35544b20804b6907e7a10ff14","container_config":{"Hostname":"bfcc161f00da","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":["/bin/sh","-c","#(nop) ADD precise.tar.xz in /"],"Dns":null,"Image":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"docker_version":"0.6.3","author":"Tianon Gravi \u003cadmwiggin@gmail.com\u003e - mkimage-debootstrap.sh -i iproute,iputils-ping,ubuntu-minimal -t precise.tar.xz precise http://archive.ubuntu.com/ubuntu/","config":{"Hostname":"bfcc161f00da","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["HOME=/","PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Cmd":null,"Dns":null,"Image":"6170bb7b0ad1003a827e4dc5253ba49f6719599eac485db51eaafd507c13c311","Volumes":null,"VolumesFrom":"","WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"Privileged":false},"architecture":"x86_64","Size":0}}
[debug] http.go:168 https://cdn-registry-1.docker.io/v1/images/9cd978db300e27386baa9dd791bf6dc818f13e52235b26e95703361ec3c94dc6/layer -- HEADERS: map[User-Agent:[docker/0.9.0 go/go1.2.1 git-commit/2b3fdf2 kernel/3.12.0-0.bpo.1-amd64 os/linux arch/amd64 ]]
[debug] archive.go:88 [tar autodetect] n: 10
[debug] archive.go:88 [tar autodetect] n: 10
[debug] archive.go:88 [tar autodetect] n: 10
[/var/lib/docker|72c081df] -job pull(ubuntu, ) = OK (0)
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:30:02 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
[/var/lib/docker|72c081df] -job create() = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/attach
2014/03/12 11:30:03 POST /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2/attach?stderr=1&stdin=1&stdout=1&stream=1
[/var/lib/docker|72c081df] +job inspect(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, container)
[/var/lib/docker|72c081df] -job inspect(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, container) = OK (0)
[/var/lib/docker|72c081df] +job attach(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[debug] container.go:227 attach: stdin: begin
[debug] container.go:264 attach: stdout: begin
[debug] container.go:302 attach: stderr: begin
[debug] container.go:348 attach: waiting for job 1/3
[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/12 11:30:03 POST /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2/start
[/var/lib/docker|72c081df] +job start(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[/var/lib/docker|72c081df] +job allocate_interface(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[/var/lib/docker|72c081df] -job allocate_interface(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[/var/lib/docker|72c081df] -job start(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[error] container.go:784 Error running container: mkdir /sys/fs/devices: no such file or directory
[/var/lib/docker|72c081df] +job release_interface(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[/var/lib/docker|72c081df] -job release_interface(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[debug] container.go:281 attach: stdout: end
[debug] container.go:319 attach: stderr: end
[debug] container.go:353 attach: job 1 completed successfully
[debug] container.go:348 attach: waiting for job 2/3
[debug] container.go:353 attach: job 2 completed successfully
[debug] container.go:348 attach: waiting for job 3/3
[debug] server.go:2211 Closing buffered stdin pipe
[debug] container.go:254 attach: stdin: end
[debug] container.go:353 attach: job 3 completed successfully
[debug] container.go:355 attach: all jobs completed successfully
[/var/lib/docker|72c081df] -job attach(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[error] container.go:841 2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2: Error closing terminal: invalid argument
[debug] server.go:925 Calling POST /containers/{name:.*}/resize
2014/03/12 11:30:03 POST /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2/resize?h=31&w=118
[/var/lib/docker|72c081df] +job resize(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, 31, 118)
bad file descriptor
[/var/lib/docker|72c081df] -job resize(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, 31, 118) = ERR (1)
[error] server.go:951 Error: bad file descriptor
[error] server.go:86 HTTP Error: statusCode=500 bad file descriptor
[debug] server.go:925 Calling POST /containers/{name:.*}/wait
2014/03/12 11:30:03 POST /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2/wait
[/var/lib/docker|72c081df] +job wait(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[/var/lib/docker|72c081df] -job wait(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[debug] server.go:925 Calling GET /containers/{name:.*}/json
2014/03/12 11:30:03 GET /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2/json
[/var/lib/docker|72c081df] +job inspect(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, container)
[/var/lib/docker|72c081df] -job inspect(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2, container) = OK (0)
[debug] server.go:925 Calling DELETE /containers/{name:.*}
2014/03/12 11:30:03 DELETE /v1.10/containers/2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2?v=1
[/var/lib/docker|72c081df] +job container_delete(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2)
[/var/lib/docker|72c081df] -job container_delete(2a78136eddb82ae3bf09e093ebf70ffba16b822bbd55b0485298f8f9853687c2) = OK (0)
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:30:04 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
[/var/lib/docker|72c081df] -job create() = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/attach
2014/03/12 11:30:05 POST /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b/attach?stderr=1&stdin=1&stdout=1&stream=1
[/var/lib/docker|72c081df] +job inspect(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, container)
[/var/lib/docker|72c081df] -job inspect(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, container) = OK (0)
[/var/lib/docker|72c081df] +job attach(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[debug] container.go:227 attach: stdin: begin
[debug] container.go:264 attach: stdout: begin
[debug] container.go:302 attach: stderr: begin
[debug] container.go:348 attach: waiting for job 1/3
[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/12 11:30:05 POST /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b/start
[/var/lib/docker|72c081df] +job start(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[/var/lib/docker|72c081df] +job allocate_interface(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[/var/lib/docker|72c081df] -job allocate_interface(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[error] container.go:784 Error running container: mkdir /sys/fs/devices: no such file or directory
[/var/lib/docker|72c081df] +job release_interface(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[/var/lib/docker|72c081df] -job release_interface(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[error] container.go:841 a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b: Error closing terminal: invalid argument
[/var/lib/docker|72c081df] -job start(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[debug] container.go:281 attach: stdout: end
[debug] container.go:319 attach: stderr: end
[debug] container.go:353 attach: job 1 completed successfully
[debug] container.go:348 attach: waiting for job 2/3
[debug] container.go:353 attach: job 2 completed successfully
[debug] container.go:348 attach: waiting for job 3/3
[debug] server.go:2211 Closing buffered stdin pipe
[debug] container.go:254 attach: stdin: end
[debug] container.go:353 attach: job 3 completed successfully
[debug] container.go:355 attach: all jobs completed successfully
[/var/lib/docker|72c081df] -job attach(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/resize
2014/03/12 11:30:05 POST /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b/resize?h=31&w=118
[/var/lib/docker|72c081df] +job resize(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, 31, 118)
bad file descriptor
[/var/lib/docker|72c081df] -job resize(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, 31, 118) = ERR (1)
[error] server.go:951 Error: bad file descriptor
[error] server.go:86 HTTP Error: statusCode=500 bad file descriptor
[debug] server.go:925 Calling POST /containers/{name:.*}/wait
2014/03/12 11:30:05 POST /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b/wait
[/var/lib/docker|72c081df] +job wait(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[/var/lib/docker|72c081df] -job wait(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[debug] server.go:925 Calling GET /containers/{name:.*}/json
2014/03/12 11:30:05 GET /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b/json
[/var/lib/docker|72c081df] +job inspect(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, container)
[/var/lib/docker|72c081df] -job inspect(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b, container) = OK (0)
[debug] server.go:925 Calling DELETE /containers/{name:.*}
2014/03/12 11:30:05 DELETE /v1.10/containers/a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b?v=1
[/var/lib/docker|72c081df] +job container_delete(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b)
[/var/lib/docker|72c081df] -job container_delete(a0d0f306ea5e363f7d4332f35eab4a25c762b358f4766b86bc4ca120232c718b) = OK (0)
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:30:06 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
[/var/lib/docker|72c081df] -job create() = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/attach
2014/03/12 11:30:07 POST /v1.10/containers/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474/attach?stderr=1&stdin=1&stdout=1&stream=1
[/var/lib/docker|72c081df] +job inspect(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474, container)
[/var/lib/docker|72c081df] -job inspect(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474, container) = OK (0)
[/var/lib/docker|72c081df] +job attach(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
[debug] container.go:227 attach: stdin: begin
[debug] container.go:264 attach: stdout: begin
[debug] container.go:302 attach: stderr: begin
[debug] container.go:348 attach: waiting for job 1/3
[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/12 11:30:07 POST /v1.10/containers/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474/start
[/var/lib/docker|72c081df] +job start(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
[/var/lib/docker|72c081df] +job allocate_interface(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
[/var/lib/docker|72c081df] -job allocate_interface(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = OK (0)
[error] container.go:784 Error running container: mkdir /sys/fs/devices: no such file or directory
[/var/lib/docker|72c081df] +job release_interface(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
[/var/lib/docker|72c081df] -job release_interface(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = OK (0)
[error] container.go:841 c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: Error closing terminal: invalid argument
[/var/lib/docker|72c081df] -job start(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = OK (0)
[debug] container.go:281 attach: stdout: end
[debug] container.go:319 attach: stderr: end
[debug] container.go:353 attach: job 1 completed successfully
[debug] container.go:348 attach: waiting for job 2/3
[debug] container.go:353 attach: job 2 completed successfully
[debug] container.go:348 attach: waiting for job 3/3
[debug] server.go:2211 Closing buffered stdin pipe
[debug] container.go:254 attach: stdin: end
[debug] container.go:353 attach: job 3 completed successfully
[debug] container.go:355 attach: all jobs completed successfully
[/var/lib/docker|72c081df] -job attach(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/wait
2014/03/12 11:30:07 POST /v1.10/containers/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474/wait
[/var/lib/docker|72c081df] +job wait(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
[/var/lib/docker|72c081df] -job wait(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = OK (0)
[debug] server.go:925 Calling GET /containers/{name:.*}/json
2014/03/12 11:30:07 GET /v1.10/containers/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474/json
[/var/lib/docker|72c081df] +job inspect(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474, container)
[/var/lib/docker|72c081df] -job inspect(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474, container) = OK (0)
[debug] server.go:925 Calling DELETE /containers/{name:.*}
2014/03/12 11:30:07 DELETE /v1.10/containers/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474?v=1
[/var/lib/docker|72c081df] +job container_delete(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474)
Cannot destroy container c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: Driver aufs failed to remove root filesystem c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: rename /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474 /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474-removing: device or resource busy
[/var/lib/docker|72c081df] -job container_delete(c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474) = ERR (1)
[error] server.go:951 Error: Cannot destroy container c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: Driver aufs failed to remove root filesystem c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: rename /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474 /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474-removing: device or resource busy
[error] server.go:86 HTTP Error: statusCode=500 Cannot destroy container c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: Driver aufs failed to remove root filesystem c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474: rename /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474 /var/lib/docker/aufs/mnt/c9a42f9984e570c40f1cfa79944082d09c3ee36906a051925a947a8c8f256474-removing: device or resource busy
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:30:10 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
[/var/lib/docker|72c081df] -job create() = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/attach
2014/03/12 11:30:10 POST /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d/attach?stderr=1&stdin=1&stdout=1&stream=1
[/var/lib/docker|72c081df] +job inspect(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, container)
[/var/lib/docker|72c081df] -job inspect(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, container) = OK (0)
[/var/lib/docker|72c081df] +job attach(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
[debug] container.go:227 attach: stdin: begin
[debug] container.go:264 attach: stdout: begin
[debug] container.go:302 attach: stderr: begin
[debug] container.go:348 attach: waiting for job 1/3
[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/12 11:30:10 POST /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d/start
[/var/lib/docker|72c081df] +job start(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
[/var/lib/docker|72c081df] +job allocate_interface(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
[/var/lib/docker|72c081df] -job allocate_interface(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = OK (0)
[error] container.go:784 Error running container: mkdir /sys/fs/devices: no such file or directory
[/var/lib/docker|72c081df] +job release_interface(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
[/var/lib/docker|72c081df] -job release_interface(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = OK (0)
[error] container.go:841 b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: Error closing terminal: invalid argument
[/var/lib/docker|72c081df] -job start(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = OK (0)
[debug] container.go:281 attach: stdout: end
[debug] container.go:319 attach: stderr: end
[debug] container.go:353 attach: job 1 completed successfully
[debug] container.go:348 attach: waiting for job 2/3
[debug] container.go:353 attach: job 2 completed successfully
[debug] container.go:348 attach: waiting for job 3/3
[debug] server.go:2211 Closing buffered stdin pipe
[debug] container.go:254 attach: stdin: end
[debug] container.go:353 attach: job 3 completed successfully
[debug] container.go:355 attach: all jobs completed successfully
[/var/lib/docker|72c081df] -job attach(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/resize
2014/03/12 11:30:11 POST /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d/resize?h=31&w=118
[/var/lib/docker|72c081df] +job resize(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, 31, 118)
bad file descriptor
[/var/lib/docker|72c081df] -job resize(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, 31, 118) = ERR (1)
[error] server.go:951 Error: bad file descriptor
[error] server.go:86 HTTP Error: statusCode=500 bad file descriptor
[debug] server.go:925 Calling POST /containers/{name:.*}/wait
2014/03/12 11:30:11 POST /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d/wait
[/var/lib/docker|72c081df] +job wait(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
[/var/lib/docker|72c081df] -job wait(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = OK (0)
[debug] server.go:925 Calling GET /containers/{name:.*}/json
2014/03/12 11:30:11 GET /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d/json
[/var/lib/docker|72c081df] +job inspect(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, container)
[/var/lib/docker|72c081df] -job inspect(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d, container) = OK (0)
[debug] server.go:925 Calling DELETE /containers/{name:.*}
2014/03/12 11:30:11 DELETE /v1.10/containers/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d?v=1
[/var/lib/docker|72c081df] +job container_delete(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d)
Cannot destroy container b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: Driver aufs failed to remove root filesystem b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: rename /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d-removing: device or resource busy
[/var/lib/docker|72c081df] -job container_delete(b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d) = ERR (1)
[error] server.go:951 Error: Cannot destroy container b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: Driver aufs failed to remove root filesystem b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: rename /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d-removing: device or resource busy
[error] server.go:86 HTTP Error: statusCode=500 Cannot destroy container b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: Driver aufs failed to remove root filesystem b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d: rename /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d /var/lib/docker/aufs/mnt/b6c84fdf0bb94a6b6b35d8f86102f03e11775012ef7f084107f698dc9710666d-removing: device or resource busy
[debug] server.go:925 Calling GET /version
2014/03/12 11:30:41 GET /v1.10/version
[/var/lib/docker|72c081df] +job version()
[/var/lib/docker|72c081df] -job version() = OK (0)
[debug] server.go:925 Calling POST /containers/create
2014/03/12 11:39:57 POST /v1.10/containers/create
[/var/lib/docker|72c081df] +job create()
[/var/lib/docker|72c081df] -job create() = OK (0)
[debug] server.go:925 Calling POST /containers/{name:.*}/attach
2014/03/12 11:39:57 POST /v1.10/containers/9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c/attach?stderr=1&stdin=1&stdout=1&stream=1
[/var/lib/docker|72c081df] +job inspect(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c, container)
[/var/lib/docker|72c081df] -job inspect(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c, container) = OK (0)
[/var/lib/docker|72c081df] +job attach(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[debug] container.go:227 attach: stdin: begin
[debug] container.go:264 attach: stdout: begin
[debug] container.go:302 attach: stderr: begin
[debug] container.go:348 attach: waiting for job 1/3
[debug] server.go:925 Calling POST /containers/{name:.*}/start
2014/03/12 11:39:57 POST /v1.10/containers/9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c/start
[/var/lib/docker|72c081df] +job start(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[/var/lib/docker|72c081df] +job allocate_interface(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[/var/lib/docker|72c081df] -job allocate_interface(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)
[error] container.go:784 Error running container: mkdir /sys/fs/devices: no such file or directory
[/var/lib/docker|72c081df] +job release_interface(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[/var/lib/docker|72c081df] -job release_interface(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)
[/var/lib/docker|72c081df] -job start(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)
[debug] container.go:281 attach: stdout: end
[debug] container.go:319 attach: stderr: end
[debug] container.go:353 attach: job 1 completed successfully
[debug] container.go:348 attach: waiting for job 2/3
[debug] container.go:353 attach: job 2 completed successfully
[debug] container.go:254 attach: stdin: end
[debug] server.go:2211 Closing buffered stdin pipe
[debug] container.go:348 attach: waiting for job 3/3
[debug] container.go:353 attach: job 3 completed successfully
[debug] container.go:355 attach: all jobs completed successfully
[debug] server.go:925 Calling POST /containers/{name:.*}/wait
2014/03/12 11:39:57 POST /v1.10/containers/9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c/wait
[/var/lib/docker|72c081df] +job wait(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[/var/lib/docker|72c081df] -job attach(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)
[/var/lib/docker|72c081df] -job wait(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)
[debug] server.go:925 Calling GET /containers/{name:.*}/json
2014/03/12 11:39:57 GET /v1.10/containers/9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c/json
[/var/lib/docker|72c081df] +job inspect(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c, container)
[/var/lib/docker|72c081df] -job inspect(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c, container) = OK (0)
[debug] server.go:925 Calling DELETE /containers/{name:.*}
2014/03/12 11:39:57 DELETE /v1.10/containers/9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c?v=1
[/var/lib/docker|72c081df] +job container_delete(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c)
[/var/lib/docker|72c081df] -job container_delete(9fac04bbef78fe1896256bfd6d930c24c9ada50be24cfd8a47d22b0ddfad1a4c) = OK (0)

@timthelion
Copy link
Contributor

@tianon Did you delete the fix-cgroup-hax branch? Your link to the Debian sysv file is dead.

@SvenDowideit
Copy link
Contributor

I've hacked @tianon 's urls to be the new merged ones @timthelion :)

@shafi-codez
Copy link

has anybody got ride of this error ? Am facing the same problem

WARNING: Local (127.0.0.1) DNS resolver found in resolv.conf and containers can't use it. Using default external servers : [8.8.8.8 8.8.4.4]
[error] client.go:2315 Error resize: Error: bad file descriptor

@agibalov
Copy link

Same problem:

loki2302@ubuntu:~/d$ docker -v
Docker version 0.9.0, build 2b3fdf2
loki2302@ubuntu:~/d$ uname -a
Linux ubuntu 3.11.0-12-generic #19-Ubuntu SMP Wed Oct 9 16:20:46 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
loki2302@ubuntu:~/d$ sudo docker run -i -t ubuntu echo "hello world"
WARNING: Local (127.0.0.1) DNS resolver found in resolv.conf and containers can't use it. Using default external servers : [8.8.8.8 8.8.4.4]
[error] client.go:2315 Error resize: Error: bad file descriptor

@ric03uec
Copy link

facing the same issue on ubuntu

uname -a 
Linux ip-50-0-99-125 3.11.0-15-generic #25-Ubuntu SMP Thu Jan 30 17:22:01 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

docker -v 

Client version: 0.9.0
Go version (client): go1.2.1
Git commit (client): 2b3fdf2
Server version: 0.9.0
Git commit (server): 2b3fdf2
Go version (server): go1.2.1
Last stable version: 0.9.0

@tianon worked with the updated docker.conf script

@shafi-codez
Copy link

I started again from scratch in Ubuntu after kernel upgrade to 3.8.0-19-generic.
It works now for me

@shafi-codez
Copy link

Also try this
sudo apt-get update && sudo apt-get install cgroup-lite

@shawndrape
Copy link

Installing cgroup-lite as per @shafi-codez's recommendation above has solved the problem for me as well. Ubuntu 3.11 on VMWare Fusion 5.

@Bargs
Copy link

Bargs commented Mar 21, 2014

Installing cgroup-lite fixed the issue for me as well.

@unwitting
Copy link

Installing cgroup-lite worked for me.

@dergachev
Copy link

Running cgroup-lite fixed the issue for me as well.

Original error:

docker run -t -i dergachev/gdocs-export
#    [error] client.go:2315 Error resize: Error: bad file descriptor
sudo apt-get update && sudo apt-get install cgroup-lite
docker run -t -i dergachev/gdocs-export
#    SUCCESS

Here's some context:

lsb_release -a
#    No LSB modules are available.
#    Distributor ID:    Ubuntu
#    Description:   Ubuntu 13.04
#    Release:   13.04
#    Codename:  raring

docker info
#    Containers: 16
#    Images: 13
#    Driver: aufs
#     Root Dir: /var/lib/docker/aufs
#     Dirs: 45
#    WARNING: No memory limit support
#    WARNING: No swap limit support

docker version
#    Client version: 0.9.0
#    Go version (client): go1.2.1
#    Git commit (client): 2b3fdf2
#    Server version: 0.9.0
#    Git commit (server): 2b3fdf2
#    Go version (server): go1.2.1
#    Last stable version: 0.9.1, please update docker

@unclejack
Copy link
Contributor

Docker 0.9.1 and Docker built from master shouldn't run into this problem any more. Please feel free to comment if you can still reproduce this problem.

@kolypto
Copy link

kolypto commented Jun 3, 2014

@unclejack , I'm having the same problem:

[error] client.go:2329 Error getting size: bad file descriptor

Docker v0.9.1 running on Ubuntu x86_64, using docker from the official repository. I'm using the "docker" group to run the client.

I have a stopped container, yesterday it worked fine. Today, after reboot, I use docker start <container-name> - and here comes the problem

@kolypto
Copy link

kolypto commented Jun 3, 2014

Ah, this clarifies the situation: I had mysql running locally on 3306 which prevented the container from starting:

% docker start app-devel
Error: Cannot start container dignio-devel: listen tcp 0.0.0.0:3306: bind: address already in use
2014/06/03 11:18:35 Error: failed to start one or more containers
% docker start -ai dignio-devel
[error] client.go:2329 Error getting size: bad file descriptor

So the only problem is the error message, which becomes useless with -ai flags.

(when I stopped local MySQL -- now it works fine)

@Luticus
Copy link

Luticus commented Jul 8, 2014

Just thought I'd add that I was facing this issue on the Debian derivative SolidK using docker.io version 0.9.0 and managed to resolve it by install the package "cgroup-bin" and then issuing the command "sudo umount cgroup" and finally doing "sudo service docker.io restart". Now docker works as expected. In Debian Jessie as the host I did not experience this issue. Hope this helps someone.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests