2017年8月18日金曜日

docker stop,start,attach:コンテナの停止/起動/アクセスする

[root@localhost sysconfig]# docker ps
CONTAINER ID        IMAGE                     COMMAND             CREATED             STATUS              PORTS               NAMES
956ebd5d66b4        enakai00/centos:centos6   "/bin/bash"         26 hours ago        Up 12 minutes                           centos01
[root@localhost sysconfig]# docker stop centos01
centos01
[root@localhost sysconfig]# docker ps -a
CONTAINER ID        IMAGE                     COMMAND             CREATED             STATUS                       PORTS               NAMES
956ebd5d66b4        enakai00/centos:centos6   "/bin/bash"         26 hours ago        Exited (137) 3 seconds ago                       centos01
[root@localhost sysconfig]#
[root@localhost sysconfig]# docker start centos01
centos01
[root@localhost sysconfig]# docker attach centos01
[root@956ebd5d66b4 /]# ps -ef
UID         PID   PPID  C STIME TTY          TIME CMD
root          1      0  0 02:11 ?        00:00:00 /bin/bash
root         13      1  0 02:11 ?        00:00:00 ps -ef
[root@956ebd5d66b4 /]#

0 件のコメント:

コメントを投稿