Skip to main content

Command Palette

Search for a command to run...

#dockerhub

Articles tagged with #dockerhub

  1. Beyond One Server: Solving Docker Scaling with Swarm and Container Networks

    This post covers three separate but deeply connected topics. We start by finishing what was started with Docker Hub, pushing all four bank service images to a remote registry so they survive beyond any single machine. From there, we identify a real architectural problem with single-host Docker deployments and introduce Docker Swarm as the solution. Finally, we close with Docker networking, explaining how containers communicate with each other both on the same host and across different hosts. By the end of this article, you will understand how to push and pull images from Docker Hub, how to set up a multi-node Docker Swarm cluster, how to create and scale services across that cluster, what self-healing means in practice, and how Docker networking works under the hood.

    Jun 17, 202618 min read1
    Beyond One Server: Solving Docker Scaling with Swarm and Container Networks
  2. Docker Compose in Action: Multi-Container Apps, Nginx Load Balancing & Docker Hub

    We built four containerized microservices for an bank application in the last post. Internet banking, mobile banking, insurance, and loans, each running in its own container, each exposed on a separate port. The setup worked. But the process of building and running each container individually by hand was repetitive, error-prone, and simply not practical at scale. This post introduces Docker Compose, and by the end, you will understand not just how to use it, but why it exists, what its real limitations are, how to combine it with Nginx to build a working high availability architecture, and how to push your images to Docker Hub so they are available beyond your local machine. There is also a hands-on project included here that builds a Flask-based Python application behind an Nginx load balancer, which you are expected to complete as a practical exercise.

    Jun 16, 202617 min read1
    Docker Compose in Action: Multi-Container Apps, Nginx Load Balancing & Docker Hub