{"id":82911,"date":"2023-04-05T12:59:14","date_gmt":"2023-04-05T12:59:14","guid":{"rendered":"\/tutorials\/?p=82911"},"modified":"2025-11-11T10:31:53","modified_gmt":"2025-11-11T10:31:53","slug":"docker-cheat-sheet","status":"publish","type":"post","link":"\/tutorials\/docker-cheat-sheet","title":{"rendered":"Docker cheat sheet for developers"},"content":{"rendered":"<p>Docker is a containerization tool that enables you to deploy and configure services in isolated environments. To manage various aspects of this platform and the services running on top of it, you mainly use various Docker commands.<\/p><p>There are different Docker commands for specific tasks. Based on their purpose, they fall into these categories:<\/p><ul class=\"wp-block-list\">\n<li><strong>Build commands. <\/strong>Create an image from a Dockerfile.<\/li>\n\n\n\n<li><strong>Cleanup commands<\/strong>. Remove unused images and volumes to free up space. <strong>&nbsp;<\/strong><\/li>\n\n\n\n<li><strong>Container interaction commands<\/strong>. Manage and communicate with containers.&nbsp;<\/li>\n\n\n\n<li><strong>Container inspection commands. <\/strong>Analyze and check the details of containers.<\/li>\n\n\n\n<li><strong>Image management commands. <\/strong>Administer images.&nbsp;<\/li>\n\n\n\n<li><strong>Run commands. <\/strong>Build a container from an image and change its settings.&nbsp;<\/li>\n\n\n\n<li><strong>Registry commands<\/strong>.<strong> <\/strong>Interact with a remote Docker image registry, like Docker Hub.&nbsp;<\/li>\n\n\n\n<li><strong>Service commands.<\/strong> Manage all aspects of Docker services.<\/li>\n\n\n\n<li><strong>Network commands. <\/strong>Configure, manage, and interact with the Docker network.&nbsp;<\/li>\n<\/ul><p>Let&rsquo;s dive deeper into each category to learn the commands in more detail, their variations, and their purposes. At the end, you&rsquo;ll find a Docker cheat sheet that you can download and easily look back to when unsure what utilities to use.<\/p><p>\n\n\n\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-build-commands\">Build commands<\/h2><p>The build command in <a href=\"\/tutorials\/what-is-docker\">Docker<\/a> is used to build images from a Dockerfile. There are some variations of this command used for different tasks, with the most common ones including:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Command<\/strong><\/td><td><strong>Explanation<\/strong><\/td><\/tr><tr><td><code data-enlighter-language=\"raw\" class=\"EnlighterJSRAW\">docker build<\/code><\/td><td>Builds an image from a Dockerfile in the current directory<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker build https:\/\/github.com\/docker\/rootfs.git#container:docker<\/code><\/td><td>Builds an image from a remote Git repository<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker build -t imagename\/tag<\/code><\/td><td>Builds and tags an image for easier tracking<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker build https:\/\/yourserver\/file.tar.gz<\/code><\/td><td>Builds an image from a remote <strong>tar<\/strong> archive<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker build -t image:1.0 -&lt;&lt;EOF FROM busybox RUN echo \"hello world\"EOF<\/code><\/td><td>Builds an image via a Dockerfile that is passed through <strong>STDIN<\/strong> or standard input<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"h-cleanup-commands\">Cleanup commands<\/h2><p>The cleanup commands, as the name suggests, <a href=\"\/tutorials\/docker-remove-all-images-tutorial\">remove unused images<\/a>, containers, and volumes to keep your system clean, as well as freeing up storage space. Here are operations you can do with it:<\/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=\"raw\" class=\"EnlighterJSRAW\">docker image prune<\/code><\/td><td>Deletes dangling or untagged images<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker image prune -a<\/code><\/td><td>Clears all images that aren&rsquo;t 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-name<\/code><\/td><td>Removes a specific image by name<\/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>Deletes 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>Clears 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><h2 class=\"wp-block-heading\" id=\"h-container-interaction-commands\">Container interaction commands<\/h2><p>The container interaction commands are used to build and manage applications running on isolated environments. Here are some of the most common ones:<\/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=\"\/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 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 \"author\" 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><h2 class=\"wp-block-heading\" id=\"h-container-inspection-commands\">Container inspection commands<\/h2><p>The container inspection commands are helpful for checking details of the isolated environments, which is commonly done for quality assurance or troubleshooting purposes. Here are some commands that 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, regardless of their statuses<\/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><h2 class=\"wp-block-heading\" id=\"h-image-management-commands\">Image management commands<\/h2><p>The image management commands enable you to modify and inspect images that will be used to build containers. The most common utilities for this purpose 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 <\/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><h2 class=\"wp-block-heading\" id=\"h-run-command\">Run command<\/h2><p>The run command in Docker is used to create containers from provided images. The default syntax for this utility looks like:<\/p><pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">docker run (options) image (command) (arg...)<\/pre><p>You can add the following flags to modify the command behavior and build containers using specific settings:<\/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 the 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 for the container<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--hostname , -h<\/code><\/td><td>Gives the container a specific hostname<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">--label , -l<\/code><\/td><td>Creates a metadata label for the 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 the container to a Docker 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 the container<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"h-registry-commands\">Registry commands<\/h2><p>Docker registry commands enable you to interact with remote image repositories, such as the official Docker Hub or a self-hosted registry running on a <a href=\"\/vps-hosting\">private server<\/a>:<\/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><figure class=\"wp-block-image size-large\"><a class=\"hgr-tutorials-cta hgr-tutorials-cta-vps-hosting\" href=\"\/vps-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"300\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/public\" alt=\"\" class=\"wp-image-77934\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=768,fit=scale-down 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><h2 class=\"wp-block-heading\" id=\"h-service-commands\">Service commands<\/h2><p>The service commands are used to manage a <a href=\"\/tutorials\/how-to-create-docker-swarm\">Docker Swarm<\/a> <strong>service<\/strong> &mdash; an image for a microservice within the context of a larger application. These 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 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 servicename<\/code><\/td><td>Lists all service logs<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"h-network-commands\">Network commands<\/h2><p>The network commands are used to manage your Docker application&rsquo;s network, which defines how containers communicate with each other and external systems. Here are some of the most common ones:<\/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 network-name<\/code><\/td><td>Creates a new network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network rm network-name<\/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 network-name container<\/code><\/td><td>Connects a container to a network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network disconnect network-name container<\/code><\/td><td>Disconnects a container from a network<\/td><\/tr><tr><td><code data-enlighter-language=\"generic\" class=\"EnlighterJSRAW\">docker network inspect network-name<\/code><\/td><td>Displays detailed information about a network<\/td><\/tr><\/tbody><\/table><\/figure><h2 class=\"wp-block-heading\" id=\"h-understanding-how-to-use-docker\">Understanding how to use Docker<\/h2><p>Commands you have learned in this cheat sheet are used to interact with various entities in the broader Docker ecosystem, specifically the server, client, container, image, and registry. <\/p><p>If you&rsquo;re new to Docker, master running and inspecting containers first (<strong>docker run, docker ps, docker logs, docker exec<\/strong>), then progress to building images (<strong>docker build, docker tag, docker push<\/strong>). Advanced networking and Swarm commands are only needed for specific deployment scenarios.<\/p><p>To learn these concepts in detail and understand their relationship to the commands, refer to our <a href=\"\/tutorials\/docker-tutorial\">Docker tutorial<\/a>.&nbsp;<\/p><p>Remembering all the commands can be challenging so below you&rsquo;ll find a downloadable Docker cheat sheet that you can download and print out for a handy reference when using the container platform.&nbsp;<\/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>\n","protected":false},"excerpt":{"rendered":"<p>Docker is a containerization tool that enables you to deploy and configure services in isolated environments. To manage various aspects [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/tutorials\/docker-cheat-sheet\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":279,"featured_media":64047,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"Docker Cheat Sheet: Most Important Commands + Free PDF","rank_math_description":"Check out this Docker cheat sheet to find all the commands you'll need to learn and improve your Docker skills in one place.","rank_math_focus_keyword":"docker cheat sheet","footnotes":""},"categories":[22646,22644],"tags":[],"class_list":["post-82911","post","type-post","status-publish","format-standard","has-post-thumbnail","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\/tutorials\/wp-json\/wp\/v2\/posts\/82911","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/users\/279"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/comments?post=82911"}],"version-history":[{"count":23,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/82911\/revisions"}],"predecessor-version":[{"id":136129,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/82911\/revisions\/136129"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/media\/64047"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/media?parent=82911"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/categories?post=82911"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/tags?post=82911"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}