Created
October 4, 2013 02:04
-
-
Save sebv/6819944 to your computer and use it in GitHub Desktop.
docker unexpected EOF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parallels:~$ sudo docker run -d -p 5432:5432 spotapoo/postgis | |
WARNING: Docker detected local DNS server on resolv.conf. Using default external servers: [8.8.8.8 8.8.4.4] | |
7cd4bd58cc9e | |
parallels:~$ | |
parallels:~$ sudo docker ps | |
ID IMAGE COMMAND CREATED STATUS PORTS | |
7cd4bd58cc9e spotapoo/postgis:latest /start 17 seconds ago Up 16 seconds 49153->22, 5432->5432 | |
parallels:~$ | |
parallels:~$ ps -elf | grep docker | |
4 S root 1086 1 0 80 0 - 1101 wait 09:51 ? 00:00:00 /bin/sh -e -c /usr/bin/docker -d /bin/sh | |
4 S root 1087 1086 0 80 0 - 69029 futex_ 09:51 ? 00:00:00 /usr/bin/docker -d | |
4 S root 2747 1087 0 80 0 - 5292 ep_pol 09:56 ? 00:00:00 lxc-start -n 7cd4bd58cc9e41f70b062bc47eb8011b1828baf252edf40043f0dadc36a7927c -f /var/lib/docker/containers/7cd4bd58cc9e41f70b062bc47eb8011b1828baf252edf40043f0dadc36a7927c/config.lxc -- /.dockerinit -g 172.17.42.1 -e HOME=/ -e PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin -e container=lxc -e HOSTNAME=7cd4bd58cc9e -e HOME=/ -e PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin -- /start | |
0 S 1000 2892 2259 0 80 0 - 3398 pipe_w 09:58 pts/0 00:00:00 grep --color=auto docker | |
parallels:~$ sudo kill -9 1086 1087 | |
kill: No such process | |
parallels:~$ ps -elf | grep docker | |
4 S root 2747 1 0 80 0 - 5292 ep_pol 09:56 ? 00:00:00 lxc-start -n 7cd4bd58cc9e41f70b062bc47eb8011b1828baf252edf40043f0dadc36a7927c -f /var/lib/docker/containers/7cd4bd58cc9e41f70b062bc47eb8011b1828baf252edf40043f0dadc36a7927c/config.lxc -- /.dockerinit -g 172.17.42.1 -e HOME=/ -e PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin -e container=lxc -e HOSTNAME=7cd4bd58cc9e -e HOME=/ -e PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin -- /start | |
4 S root 2896 1 0 80 0 - 1101 wait 09:59 ? 00:00:00 /bin/sh -e -c /usr/bin/docker -d /bin/sh | |
4 S root 2897 2896 2 80 0 - 68693 futex_ 09:59 ? 00:00:00 /usr/bin/docker -d | |
0 S 1000 2930 2259 0 80 0 - 3398 pipe_w 09:59 pts/0 00:00:00 grep --color=auto docker | |
parallels:~$ sudo docker ps | |
ID IMAGE COMMAND CREATED STATUS PORTS | |
7cd4bd58cc9e spotapoo/postgis:latest /start 3 minutes ago Ghost 49153->22, 5432->5432 | |
parallels:~$ sudo docker restart 7cd4bd58cc9e | |
unexpected EOF | |
parallels:~$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment