docker

Traefik, Docker and SSL

What is Traefik? Traefik is an open-source dynamic reverse proxy and load balancer. It’s often used as a tool for managing traffic in containerized environments, such as Docker. This tool enables automatic redirection of network traffic to different services based on defined configuration rules. Additionally, it supports various communication protocols including HTTP, TCP, and UDP. In this guide, I’ll show you how to set up Traefik within Docker. Benefits of Using Traefik Traefik is a tool for routing network traffic in a microservices architecture....

August 31, 2023 · 2 min · 373 words · Adam
docker

Docker Cheatsheet

What is Docker? Docker is a way to containerize applications (placing code in boxes that can operate independently). It magically creates a virtual computer, but in reality, these are not virtual machines. Containers are boxes that do not have a host operating system, so they are independent of the device they run on. Benefits: Isolation: Each container operates in a separate environment. Portability: Containers are independent of the environment. Scalability: Easy addition and removal of containers based on the workload....

July 21, 2023 · 4 min · 651 words · Adam