{"id":82911,"date":"2023-04-05T12:59:14","date_gmt":"2023-04-05T12:59:14","guid":{"rendered":"\/tutorials\/?p=82911"},"modified":"2025-04-26T02:57:56","modified_gmt":"2025-04-26T02:57:56","slug":"docker-cheat-sheet","status":"publish","type":"post","link":"\/in\/tutorials\/docker-cheat-sheet","title":{"rendered":"Docker Cheat Sheet: All the Most Essential Commands in One Place + Downloadable PDF"},"content":{"rendered":"<p>Docker is a popular open-source platform that makes it easy to build, test, deploy, and manage containerized applications in a consistent, portable, or virtual environment such as VPS.<\/p><p>While a powerful tool in your development arsenal, learning the different Docker commands can take time and effort. New users often benefit from having a Docker cheat sheet readily at hand.<\/p><p>In this tutorial, we will explain how Docker works and provide the most common Docker commands, along with a downloadable cheat sheet for you to use.<\/p><p class=\"has-text-align-center\"><a href=\"https:\/\/assets.hostinger.com\/content\/tutorials\/pdf\/Docker-Cheat-Sheet.pdf\" target=\"_blank\" rel=\"noopener\">Download free docker cheat sheet<\/a><\/p><p>\n\n\n\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-docker-architecture\">Docker Architecture<\/h2><p>Docker architecture consists of five main components: server, client, container, image, and registry.<\/p><p><strong>Docker Server<\/strong><\/p><p>A Docker server or Docker daemon is a program that runs in the background of your computer and manages Docker containers and images. When you use the Docker command line interface.<\/p><p>(CLI) to create, run, or manage containers, you interact with the Docker daemon.<\/p><p>The Docker daemon is an essential platform component that ensures containers can be started and stopped automatically when the system boots up.<\/p><p><strong>Docker Client <\/strong><\/p><p>The Docker client lets users interact with the Docker daemon with its command-line interface (CLI). In simple terms, it&rsquo;s the main part of the Docker architecture for creating, managing, and running container applications.<\/p><p>When you use the Docker CLI to pass a command, the Docker client sends the command to the Docker daemon running on your computer, which then carries out the requested operation. The <a href=\"\/in\/tutorials\/how-to-install-docker-on-ubuntu\">Docker client can be installed<\/a> on any machine that needs to interact with the Docker daemon, including your local machine, a remote server, or a <a href=\"\/in\/tutorials\/what-is-vps-hosting\">virtual server<\/a>.<\/p><?xml encoding=\"utf-8\" ?><figure class=\"wp-block-image size-large\"><a href=\"\/in\/vps-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"300\" src=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner-1024x300.png\" alt=\"\" class=\"wp-image-77934\" srcset=\"https:\/\/www.hostinger.com\/in\/tutorials\/wp-content\/uploads\/sites\/52\/2023\/02\/VPS-hosting-banner.png 1024w, https:\/\/www.hostinger.com\/in\/tutorials\/wp-content\/uploads\/sites\/52\/2023\/02\/VPS-hosting-banner-300x88.png 300w, https:\/\/www.hostinger.com\/in\/tutorials\/wp-content\/uploads\/sites\/52\/2023\/02\/VPS-hosting-banner-150x44.png 150w, https:\/\/www.hostinger.com\/in\/tutorials\/wp-content\/uploads\/sites\/52\/2023\/02\/VPS-hosting-banner-768x225.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><p><strong>Docker Container<\/strong><\/p><p>A Docker container is a package that contains all the required prerequisites to run an application.<\/p><p>Containers are designed to be highly portable, meaning that they can be easily moved from one environment to another, such as from a developer&rsquo;s laptop to a testing environment or from a testing environment to a production environment.<\/p><p><strong>Docker Image<\/strong><\/p><p>A Docker image is a preconfigured template that specifies what should be included in a Docker container. Usually, images are downloaded from websites like <a href=\"https:\/\/hub.docker.com\/\" target=\"_blank\" rel=\"noopener\">Docker Hub<\/a>. However, it&rsquo;s also possible to create a custom image with the help of Dockerfile.<\/p><p><strong>Docker Registry<\/strong><\/p><p>The Docker registry is a central repository that stores and manages Docker images. It is a server-based system that lets users store and share Docker images with others, making it easy to distribute and deploy applications. The most notable Docker registry is Docker Hub.<\/p><h2 class=\"wp-block-heading\" id=\"h-docker-commands-cheat-sheet\">Docker Commands Cheat Sheet<\/h2><p>Now that you know how Docker functions, let&rsquo;s look at some of the most popular Docker command examples.<\/p><h3 class=\"wp-block-heading\" id=\"h-build-commands\">Build Commands<\/h3><p>Docker uses the build command for building images from a Docker file. Some of the most common commands include:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td>docker build<\/td><td>Builds an image from a                                                                                                                                                                  Dockerfile in the current directory                             <\/td><\/tr><tr><td>docker build https:\/\/github.com\/docker\/<br>rootfs.git#container:docker<\/td><td>Builds an image from a remote GIT repository                  <\/td><\/tr><tr><td>docker build -t imagename\/tag<\/td><td>Builds and tags an image for easier tracking<\/td><\/tr><tr><td>docker build https:\/\/yourserver\/file.tar.gz<\/td><td>Builds an image from a remote tar archive<\/td><\/tr><tr><td>docker build -t image:1.0<br> -&lt;&lt;EOFFROM busyboxRUN echo &ldquo;hello world&rdquo;EOF<\/td><td>Builds an image via a Dockerfile that is passed through STDIN<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-clean-up-commands\">Clean Up Commands<\/h3><p>To keep your system clean and save disk space, it&rsquo;s a great idea to <a href=\"\/in\/tutorials\/docker-remove-all-images-tutorial\">clean up unused images<\/a>, containers, and volumes. Check the commands below for more details:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image prune<\/code><\/td><td>Clears an unused image<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image prune -a<\/code><\/td><td>Clears all images that are not being used by containers<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker system prune<\/code><\/td><td>Removes all stopped containers, all networks not used by containers, all dangling images, and all build cache<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image rm image<\/code><\/td><td>Removes an image<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker rm container<\/code><\/td><td>Removes a running container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker swarm leave<\/code><\/td><td>Leaves a swarm<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker stack rm stackname<\/code><\/td><td>Removes a swarm<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker volume rm $(docker volume ls -f dangling=true -q)<\/code><\/td><td>Removes all dangling volumes<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker rm $(docker ps -a -q)<\/code><\/td><td>Removes all stopped containers<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker kill $ (docker ps -q)<\/code><\/td><td>Stops all running containers<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-container-interaction-commands\">Container Interaction Commands<\/h3><p>Interact with your Docker container with the following common commands:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker start container<\/code><\/td><td><a href=\"\/in\/tutorials\/docker-start-a-container\/\">Starts a new container<\/a>                              <\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker stop container<\/code><\/td><td>Stops a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker pause container<\/code><\/td><td>Pauses a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker unpause container<\/code><\/td><td>Unpauses a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker restart container<\/code><\/td><td>Restarts a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker wait container<\/code><\/td><td>Blocks a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker export container<\/code><\/td><td>Exports container contents to a tar archive<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker attach container<\/code><\/td><td>Attaches to a running container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker wait container<\/code><\/td><td>Waits until the container is terminated and shows the exit code<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker commit -m &ldquo;commit message&rdquo; -a &ldquo;author&rdquo; container username\/image_name: tag<\/code><\/td><td>Saves a running container as an image<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker logs -ft container<\/code><\/td><td>Follows container logs<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker exec -ti container script.sh<\/code><\/td><td>Runs a command in a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker commit container image<\/code><\/td><td>Creates a new image from a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker create image<\/code><\/td><td>Creates a new container from an image<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-container-inspection-commands\">Container Inspection Commands<\/h3><p>Sometimes, you need to inspect your containers for quality assurance or troubleshooting purposes. These commands help you get an overview of what different containers are doing:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker ps<\/code><\/td><td>Lists all running containers<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker -ps -a<\/code><\/td><td>Lists all containers<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker diff container<\/code><\/td><td>Inspects changes to directories and files in the container filesystem<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker top container<\/code><\/td><td>Shows all running processes in an existing container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker inspect container<\/code><\/td><td>Displays low-level information about a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker logs container<\/code><\/td><td>Gathers the logs for a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker stats container<\/code><\/td><td>Shows container resource usage statistics<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-manage-images-commands\">Manage Images Commands<\/h3><p>Some of the most common image management commands include:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image ls<\/code><\/td><td>Lists images<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image rm mysql<\/code><\/td><td>Removes an image<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker tag image tag<\/code><\/td><td>Tags an image<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker history image<\/code><\/td><td>Displays the image history<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker inspect image<\/code><\/td><td>Displays low-level information about an image<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-run-commands\">Run Commands<\/h3><p>Docker uses the run command to create containers from provided images. The default syntax for this command looks like this:<\/p><pre class=\"wp-block-preformatted\">docker run (options) image (command) (arg...)<\/pre><p>After the default syntax, use one of the following flags:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Flag<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--detach , -d<\/code><\/td><td>Runs a container in the background and prints the container ID<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--env , -e<\/code><\/td><td>Sets environment variables<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--hostname , -h<\/code><\/td><td>Sets a hostname to a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--label , -l<\/code><\/td><td>Creates a meta data label for a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--name<\/code><\/td><td>Assigns a name to a container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--network<\/code><\/td><td>Connects a container to a network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--rm<\/code><\/td><td>Removes container when it stops<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--read-only<\/code><\/td><td>Sets the container filesystem as read-only<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--workdir , -w<\/code><\/td><td>Sets a working directory in a container<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-registry-commands\">Registry Commands<\/h3><p>If you need to interact with Docker Hub, use the following commands:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker login<\/code><\/td><td>Logs in to a registry<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker logout<\/code><\/td><td>Logs out from a registry<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker pull mysql<\/code><\/td><td>Pulls an image from a registry<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker push repo\/ rhel-httpd:latest<\/code><\/td><td>Pushes an image to a registry<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker search term<\/code><\/td><td>Searches Docker Hub for images with the specified term<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-service-commands\">Service Commands<\/h3><p>Manage all Docker services with these basic commands:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service ls<\/code><\/td><td>Lists all services running in a swarm<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker stack services stackname<\/code><\/td><td>Lists all running services<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service ps servicename<\/code><\/td><td>Lists the tasks of a service<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service update servicename<\/code><\/td><td>Updates a service<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service create image<\/code><\/td><td>Creates a new service<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service scale servicename=10<\/code><\/td><td>Scales one or more replicated services<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker service logs stackname servicename<\/code><\/td><td>Lists all service logs<\/td><\/tr><\/tbody><\/table><\/figure><h3 class=\"wp-block-heading\" id=\"h-network-commands\">Network Commands<\/h3><p>If you need to interact with the Docker network, use one of the following commands:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network create networkname<\/code><\/td><td>Creates a new network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network rm networkname<\/code><\/td><td>Removes a specified network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network ls<\/code><\/td><td>Lists all networks<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network connect networkname container<\/code><\/td><td>Connects a container to a network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network disconnect networkname container<\/code><\/td><td>Disconnects a container from a network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network inspect networkname<\/code><\/td><td>Displays detailed information about a network<\/td><\/tr><\/tbody><\/table><\/figure><p class=\"has-text-align-center\"><a href=\"https:\/\/assets.hostinger.com\/content\/tutorials\/pdf\/Docker-Cheat-Sheet.pdf\" target=\"_blank\" rel=\"noopener\">Download Free Docker Cheat Sheet<\/a><\/p><p>\n\n\n<div class=\"protip\">\n                    <h4 class=\"title\">Suggested Readings<\/h4>\n                    <p>Check out our other Docker tutorials<br>\n<a href=\"\/in\/tutorials\/how-to-install-docker-on-ubuntu\"> How to Install Docker on Ubuntu<\/a><br>\n<a href=\"\/in\/tutorials\/run-docker-wordpress\"> How to Install WordPress on Docker<\/a><br>\n<a href=\"\/in\/tutorials\/docker-start-a-container\/\"> How to Create a Docker Container<\/a><\/p>\n                <\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2><p>Docker is a great tool for anyone willing to try out containers. The learning curve can be steep if you&rsquo;re unfamiliar with container-based development. Luckily, having a cheat sheet at hand can speed up the process, as all common commands are easily reachable, and you don&rsquo;t need to look them up on the internet.<\/p><p>In this tutorial, we&rsquo;ve covered the basics of Docker architecture and gone through all the basic Docker commands, all of which can be found in our downloadable <a href=\"https:\/\/assets.hostinger.com\/content\/tutorials\/pdf\/Docker-Cheat-Sheet.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Docker cheat sheet<\/a>.<\/p><p>We hope that you found this Docker tutorial useful. If you have any questions, leave them in the comments section below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Docker is a popular open-source platform that makes it easy to build, test, deploy, and manage containerized applications in a consistent, portable, or virtual environment such as VPS. While a powerful tool in your development arsenal, learning the different Docker commands can take time and effort. New users often benefit from having a Docker cheat [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/in\/tutorials\/docker-cheat-sheet\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":279,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"","rank_math_description":"","rank_math_focus_keyword":"","footnotes":""},"categories":[22642,22640],"tags":[],"class_list":["post-82911","post","type-post","status-publish","format-standard","hentry","category-pre-installed-applications","category-vps"],"hreflangs":[{"locale":"en-US","link":"https:\/\/www.hostinger.com\/tutorials\/docker-cheat-sheet","default":0},{"locale":"pt-BR","link":"https:\/\/www.hostinger.com\/br\/tutoriais\/docker-cheat-sheet","default":0},{"locale":"fr-FR","link":"https:\/\/www.hostinger.com\/fr\/tutoriels\/cheat-sheet-docker","default":0},{"locale":"es-ES","link":"https:\/\/www.hostinger.com\/es\/tutoriales\/comandos-docker","default":0},{"locale":"ja-JP","link":"https:\/\/www.hostinger.com\/jp\/tutorials\/docker-cheat-sheet\/","default":0},{"locale":"en-UK","link":"https:\/\/www.hostinger.com\/uk\/tutorials\/docker-cheat-sheet","default":0},{"locale":"en-MY","link":"https:\/\/www.hostinger.com\/my\/tutorials\/docker-cheat-sheet-all-the-most-essential-commands-in-one-place-downloadable-pdf","default":0},{"locale":"en-PH","link":"https:\/\/www.hostinger.com\/ph\/tutorials\/docker-cheat-sheet-all-the-most-essential-commands-in-one-place-downloadable-pdf","default":0},{"locale":"pt-PT","link":"https:\/\/www.hostinger.com\/pt\/tutoriais\/docker-cheat-sheet","default":0},{"locale":"en-IN","link":"https:\/\/www.hostinger.com\/in\/tutorials\/docker-cheat-sheet","default":0},{"locale":"en-CA","link":"https:\/\/www.hostinger.com\/ca\/tutorials\/docker-cheat-sheet","default":0},{"locale":"es-AR","link":"https:\/\/www.hostinger.com\/ar\/tutoriales\/comandos-docker","default":0},{"locale":"es-MX","link":"https:\/\/www.hostinger.com\/mx\/tutoriales\/comandos-docker","default":0},{"locale":"es-CO","link":"https:\/\/www.hostinger.com\/co\/tutoriales\/comandos-docker","default":0},{"locale":"en-AU","link":"https:\/\/www.hostinger.com\/au\/tutorials\/docker-cheat-sheet","default":0},{"locale":"en-NG","link":"https:\/\/www.hostinger.com\/ng\/tutorials\/docker-cheat-sheet","default":0}],"_links":{"self":[{"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/posts\/82911","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/users\/279"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/comments?post=82911"}],"version-history":[{"count":16,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/posts\/82911\/revisions"}],"predecessor-version":[{"id":107387,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/posts\/82911\/revisions\/107387"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/media?parent=82911"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/categories?post=82911"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/in\/tutorials\/wp-json\/wp\/v2\/tags?post=82911"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}