docker:docker_images_vs._container
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker:docker_images_vs._container [2016/10/15 10:29] – peter | docker:docker_images_vs._container [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
Docker has images and containers. | Docker has images and containers. | ||
+ | |||
+ | ---- | ||
===== Docker Images ===== | ===== Docker Images ===== | ||
- | An image is an inert, immutable, file that's essentially a snapshot of a container. | + | Images are basically |
- | Local images | + | * An image is an inert, immutable, file that's essentially a snapshot of a container. |
+ | * Images are created with the **[[http:// | ||
+ | * Images are stored in a Docker registry such as **[[https:// | ||
+ | * Because they can become quite large, images are designed to be composed of layers of other images, allowing a minimal amount of data to be sent when transferring images over the network. | ||
- | < | + | Local images can be listed by running: |
+ | |||
+ | < | ||
+ | docker images | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
REPOSITORY | REPOSITORY | ||
ubuntu | ubuntu | ||
Line 22: | Line 35: | ||
* **IMAGE ID** is the first 12 characters of the true identifier for an image. You can create many tags of a given image, but their IDs will all be the same (as above). | * **IMAGE ID** is the first 12 characters of the true identifier for an image. You can create many tags of a given image, but their IDs will all be the same (as above). | ||
* **VIRTUAL SIZE** is virtual because its adding up the sizes of all the distinct underlying layers. | * **VIRTUAL SIZE** is virtual because its adding up the sizes of all the distinct underlying layers. | ||
- | * The value in the REPOSITORY column comes from the -t flag of the docker build command, or from docker tag-ing an existing image. | + | * The value in the **REPOSITORY** column comes from the -t flag of the docker build command, or from docker tag-ing an existing image. |
- | * The full form of a tag is [REGISTRYHOST/ | + | * The full form of a tag is [REGISTRYHOST/ |
- | * The TAG column is just the [:TAG] part of the full tag. This is unfortunate terminology. | + | * The **TAG** column is just the [:TAG] part of the full tag. This is unfortunate terminology. |
* The latest tag is not magical, it's simply the default tag when you don't specify a tag. | * The latest tag is not magical, it's simply the default tag when you don't specify a tag. | ||
- | * You can have untagged images only identifiable by their IMAGE IDs. These will get the < | + | * You can have untagged images only identifiable by their **IMAGE ID**s. These will get the < |
More info on images is available from the [[https:// | More info on images is available from the [[https:// | ||
+ | ---- | ||
===== Docker Containers ===== | ===== Docker Containers ===== | ||
- | To use a programming metaphor, if an image is a class, then a container is an instance of a class—a runtime object. Containers are hopefully why you're using Docker; they' | + | To use a programming metaphor, if an image is a class, then a container is an instance of a class — a runtime object. |
- | View local running containers with **docker ps**: | + | Containers are hopefully why you're using Docker; they' |
- | < | + | View local running containers by running: |
+ | |||
+ | < | ||
+ | docker ps | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
CONTAINER ID IMAGE | CONTAINER ID IMAGE | ||
f2ff1af05450 | f2ff1af05450 | ||
Line 44: | Line 66: | ||
Here I'm running a dockerized version of the docker registry, so that I have a private place to store my images. | Here I'm running a dockerized version of the docker registry, so that I have a private place to store my images. | ||
- | - Like IMAGE ID, CONTAINER ID is the true identifier for the container. | + | - Like **IMAGE ID**, **CONTAINER ID** is the true identifier for the container. |
- docker ps only outputs running containers. | - docker ps only outputs running containers. | ||
- | - NAMES can be used to identify a started container via the **--name** flag. | + | - **NAMES** can be used to identify a started container via the **< |
+ | ---- | ||
===== How to avoid image and container build-up ===== | ===== How to avoid image and container build-up ===== | ||
- | One of my early frustrations with Docker was the seemingly | + | There' |
We can remove all untagged images by combining **docker rmi** with the recent **dangling=true** query: | We can remove all untagged images by combining **docker rmi** with the recent **dangling=true** query: | ||
Line 65: | Line 88: | ||
</ | </ | ||
- | These are known pain points with Docker, and may be addressed in future releases. | + | These are known pain points with Docker, and may be addressed in future releases. |
- | - Always remove a useless, stopped container | + | However, with a clear understanding of images and containers, these situations can be avoided |
- | - Always remove the image behind | + | |
+ | - Always remove a useless, stopped container with **docker rm [CONTAINER_ID]**. | ||
+ | - Always remove the image behind a useless, stopped container with **docker rmi [IMAGE_ID]**. | ||
docker/docker_images_vs._container.1476527356.txt.gz · Last modified: 2020/07/15 09:30 (external edit)