Browse code

Merge pull request #3600 from SvenDowideit/ghost-status-doc

Ghost status doc

Andy Rothfusz authored on 2014/01/21 09:51:47
Showing 1 changed files
... ...
@@ -857,7 +857,10 @@ Running ``docker ps`` showing 2 linked containers.
857 857
     $ docker ps
858 858
     CONTAINER ID        IMAGE                        COMMAND                CREATED              STATUS              PORTS               NAMES
859 859
     4c01db0b339c        ubuntu:12.04                 bash                   17 seconds ago       Up 16 seconds                           webapp              
860
-    d7886598dbe2        crosbymichael/redis:latest   /redis-server --dir    33 minutes ago       Up 33 minutes       6379/tcp            redis,webapp/db     
860
+    d7886598dbe2        crosbymichael/redis:latest   /redis-server --dir    33 minutes ago       Up 33 minutes       6379/tcp            redis,webapp/db
861
+    fd2645e2e2b5        busybox:latest               top                    10 days ago          Ghost                                   insane_ptolemy
862
+
863
+The last container is marked as a ``Ghost`` container. It is a container that was running when the docker daemon was restarted (upgraded, or ``-H`` settings changed). The container is still running, but as this docker daemon process is not able to manage it, you can't attach to it. To bring them out of ``Ghost`` Status, you need to use ``docker kill`` or ``docker restart``.
861 864
 
862 865
 .. _cli_pull:
863 866