So today we'll take a look at dipping our toes into docker-compose. docker-compose is a tool for defining, running, and managing multiple containers at once. It's very useful for development environments and home servers, where you want many services running in parallel on one machine.
This tutorial will introduce you to the very basic Docker / Podman commands. You should memorize these, as you'll use them often. To download an image to your computer, use the following command as an example for how to pull an nginx image: docker pull…
In this post I'm going to give you an introduction for using Docker. But first, let's talk about the underlying technology. A container is a type of virtualization tool but unlike a Virtual Machine, a container shares its Kernel with its host, and allows access…