User Tools

Site Tools


docker_images_containers

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docker_images_containers [2015/10/05 13:58] – created luke7858docker_images_containers [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
-Getting a fresh image:+===Getting a fresh image:===
 <sxh bash> <sxh bash>
 docker pull centos:6 docker pull centos:6
Line 13: Line 13:
 centos              latest              0f73ae75014f        3 weeks ago         172.3 MB centos              latest              0f73ae75014f        3 weeks ago         172.3 MB
 hello-world         latest              af340544ed62        8 weeks ago         960 B hello-world         latest              af340544ed62        8 weeks ago         960 B
- 
 </sxh> </sxh>
 +\\
 +===Creating a container===
 +Once you have the image downloaded you can create a container with the following
 +^ Flag ^ Explanation           ^
 +| -i   | Interactive Container |
 +| -t   | creates a pseudo-TTY that attaches stdin and stdout |
 +\\
 +To detach the tty without exiting the shell you can use the 'escape' sequence:
 <sxh bash> <sxh bash>
 +Ctrl +p + Ctrl +q
 </sxh> </sxh>
 +Starting container example:
 <sxh bash> <sxh bash>
 +docker run -i -t 72703a0520b7  /bin/bash
 </sxh> </sxh>
 +\\
 +===Getting back into a container ===
 +If you need to get back into the container to make changes you can run the following command:
 +<sxh>
 +docker exec -it container /bin/bash
 +</sxh>
 +\\
 +=== Deleting a container ===
 +<sxh bash>
 +docker rm imageid
 +</sxh>
 +<sxh bash>
 +[root@docker ~]# docker rm 0496f8e30329
 +0496f8e30329
 +</sxh>
 +\\
 +===Docker location on host ===
 +Each container is located on the host
 +\\
 +You can view the containers in:
 <sxh bash> <sxh bash>
 +/var/lib/docker/containers/imageid
 </sxh> </sxh>
docker_images_containers.1444053508.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki