docker:things_to_know_about_docker
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docker:things_to_know_about_docker [2016/10/13 23:59] – created peter | docker:things_to_know_about_docker [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
===== Docker Images ===== | ===== Docker Images ===== | ||
- | A Docker image is the basic template for a Docker container. An image usually contains the OS and applications that readily installed. The Docker image is used to run the container, you can find many images with a variety of operating systems and software that has been installed in the Docker Hub https:// | + | A Docker image is the basic template for a Docker container. |
+ | An image usually contains the OS and applications that readily installed. | ||
+ | |||
+ | The Docker image is used to run the container, you can find many images with a variety of operating systems and software that has been installed in the Docker Hub https:// | ||
+ | |||
+ | ---- | ||
===== Docker Container ===== | ===== Docker Container ===== | ||
- | Docker Container is an image which can be read and written to that runs on top of the Docker image. Docker is using the union-file-system as backend for the container, any changes that are made in the container will be saved in a new layer above the base image. The container is the layer where we install applications in. Each container that runs isolated in the host machine and therefore, provides a secure application platform. | + | Docker Container is an image which can be read and written to that runs on top of the Docker image. |
+ | Docker is using the union-file-system as backend for the container, any changes that are made in the container will be saved in a new layer above the base image. | ||
+ | |||
+ | The container is the layer where we install applications in. Each container that runs isolated in the host machine and therefore, provides a secure application platform. | ||
+ | |||
+ | ---- | ||
===== Docker Registry ===== | ===== Docker Registry ===== | ||
- | Docker registry is a repository for Docker images. It provides public and private repositories. The public Docker registry is called the Docker Hub. Here we can push and pull our own images. | + | Docker registry is a repository for Docker images. |
+ | |||
+ | It provides public and private repositories. | ||
+ | |||
+ | The public Docker registry is called the Docker Hub. Here we can push and pull our own images. | ||
docker/things_to_know_about_docker.1476403159.txt.gz · Last modified: 2020/07/15 09:30 (external edit)