Tech

How to pass environment variables to Docker containers

In the world of containerization, Docker has become the industry standard for packaging applications and their dependencies. One critical aspect of configuring your Dockerized application is managing environment variables. In this blog, we will explore different methods to pass environment variables to Docker containers. Different Ways to Pass Environment Variables 1. Dockerfile ENV Instruction In…

Micronaut

Dockerizing Your Micronaut Application: A Step-by-Step Guide

Docker has become an essential tool for packaging and distributing applications. It provides a consistent environment for your applications to run in, ensuring they work the same way on your development machine, testing servers, and production servers. Micronaut, a lightweight Java framework, pairs beautifully with Docker to create portable and efficient microservices. In this blog,…

alpine-linux
TIL

TIL: What are Alpine Images in Docker

As a seasoned Docker user, you’ve likely come across the term “Alpine” when exploring base images for your containers. Perhaps you’ve even used Alpine Linux-based images without fully grasping their significance. Today, we delve into the world of Alpine Linux images in Docker, shedding light on their unique characteristics and why they are favored by…