tools:docker
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:docker [2024/08/27 06:02] – Humphrey Boa-Gart | tools:docker [2024/08/27 07:31] (current) – [Components] Humphrey Boa-Gart | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Docker ====== | ====== Docker ====== | ||
- | **Docker** is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called **containers**. Containers are isolated from one another and bundle their own software, dependencies, | + | **Docker** is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called **containers**. Containers are isolated from one another and bundle their own software, dependencies, |
- | Docker packages are typically | + | Docker packages are distributed as flat inert **images**. These images are used by the Docker |
- | Another summary, from the [[https:// | + | Another summary, from the [[https:// |
> Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. By taking advantage of Docker' | > Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. By taking advantage of Docker' | ||
===== Components ===== | ===== Components ===== | ||
+ | |||
+ | {{ : | ||
Docker isn't a single piece of software, but rather several components packaged together. We are not going to go in-depth to all the components here, but there are a few basic ones you should have a working knowledge of. | Docker isn't a single piece of software, but rather several components packaged together. We are not going to go in-depth to all the components here, but there are a few basic ones you should have a working knowledge of. | ||
Line 15: | Line 17: | ||
First, is the **Docker Engine**, which is the most integral part of the service. It includes: | First, is the **Docker Engine**, which is the most integral part of the service. It includes: | ||
- | * The **Docker Daemon**, '' | + | * The **dockerd** daemon, which is the service that runs in the background. The daemon handles the deployment of containers. When you first install Docker, you should make sure the daemon is running in [[https:// |
- | * APIs which specify interfaces that programs can use to talk to and instruct the Docker daemon. | + | |
* The [[tools: | * The [[tools: | ||
- | The most basic way to launch | + | The most basic way to launch |
- | To build your own Docker images, you will be using [[https:// | + | To build your own Docker images, you will be using [[https:// |
- | Finally there is [[https:// | + | Finally there is [[https:// |
===== Essential Commands ===== | ===== Essential Commands ===== | ||
- | There is a desktop app, but skip it. With just a handful of commands, you will master the basics of this software much faster, with less overhead to keep track of. For a complete list of commands, consult the [[https:// | + | There is a desktop app, but skip it. With just a handful of commands, you will master the basics of this software much faster, with less overhead to keep track of. For most casual Docker users, the following commands may very well be the only ones you will ever use. |
+ | |||
+ | For a complete list of commands, consult the [[https:// | ||
==== Basic Image & Container Management ==== | ==== Basic Image & Container Management ==== | ||
Line 37: | Line 41: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | |||
+ | Delete a container: | ||
+ | |||
+ | $ docker rm CONTAINERNAME | ||
List saved images: | List saved images: | ||
Line 42: | Line 50: | ||
$ docker images -a | $ docker images -a | ||
- | Delete | + | Delete |
- | $ docker | + | $ docker |
- | Delete image: | + | ==== Running & Building Containers ==== |
- | $ docker rmi IMAGENAME | + | Spawn a container from an image. If the image does not exist, it will be downloaded automatically from Docker Hub: |
- | ==== Running Containers ==== | + | $ docker run IMAGENAME |
+ | Spawn a container from an image defined in a **compose.yaml** file: | ||
- | ==== Building Containers ==== | + | $ docker compose -f / |
+ | Restart a container: | ||
+ | |||
+ | $ docker restart CONTAINERNAME | ||
+ | |||
+ | Stop a container: | ||
+ | |||
+ | $ docker stop CONTAINERNAME | ||
+ | |||
+ | Start a stopped container: | ||
+ | |||
+ | $ docker start CONTAINERNAME | ||
+ | |||
+ | Kill a container process entirely: | ||
+ | |||
+ | $ docker kill CONTAINERNAME | ||
+ | |||
+ | Download a container image from Docker Hub without running it: | ||
+ | |||
+ | $ docker pull IMAGENAME | ||
+ | |||
+ | Build a container image from a Dockerfile //(Do not specify the Dockerfile itself like you would with the aforementioned '' | ||
+ | |||
+ | $ docker build / | ||
==== Other Useful Commands ==== | ==== Other Useful Commands ==== | ||
+ | Execute a command inside a running container: | ||
+ | |||
+ | $ docker exec -d CONTAINERNAME COMMANDSTRING | ||
+ | |||
+ | Open an interactive shell session inside a running container: | ||
+ | |||
+ | $ docker exec -it CONTAINERNAME sh | ||
+ | |||
+ | List port mappings for a container: | ||
+ | $ docker port CONTAINERNAME | ||
- | ===== Things You Can Do ===== | + | ===== More Things You Can Do ===== |
* You can use [[github> | * You can use [[github> |
tools/docker.1724738553.txt.gz · Last modified: 2024/08/27 06:02 by Humphrey Boa-Gart
Find this page online at: https://bestpoint.institute/tools/docker
Find this page online at: https://bestpoint.institute/tools/docker