Diksha Patro has Published 125 Articles

How to manage secret values with docker-compose v3.1?

Diksha Patro

Diksha Patro

Updated on 17-Jan-2023 18:24:41

2K+ Views

Introduction As developers, we frequently need to incorporate private data into our applications, including passwords, API keys, and database credentials. Not only is it unsafe to hardcode these variables into our code or configuration files, but it can also be challenging to manage and change them when necessary. Using environment ... Read More

How to Improve Docker Image Size With Layers?

Diksha Patro

Diksha Patro

Updated on 17-Jan-2023 18:22:20

234 Views

In this article, we will discuss various approaches and techniques for improving Docker image size with layers, including multi-stage builds, using minimal base images, and using base images with pre-installed packages or pre-built binaries. By following these best practices, we can create smaller and more efficient Docker images that are ... Read More

How to Find the layers and layer sizes for each Docker image?

Diksha Patro

Diksha Patro

Updated on 17-Jan-2023 18:14:29

6K+ Views

Introduction By using containerization, we can quickly set up and configure our deployment environments, which helps us save time and resources. With the goal of "write once, deploy anywhere" in mind, containerization can help us streamline the process of deploying modern applications, which can be complex. Finding the layers and ... Read More

How to find Docker container processes?

Diksha Patro

Diksha Patro

Updated on 17-Jan-2023 18:11:05

10K+ Views

Introduction Docker is a powerful tool that allows developers to build, ship, and run applications inside containers. Containers are small, independent executable packages that contain all the components - code, libraries, dependencies, and runtime - that an application requires to function. One of the key features of Docker is the ... Read More

How to directly mount NFS share/volume in a container using Docker Compose v3?

Diksha Patro

Diksha Patro

Updated on 17-Jan-2023 17:53:10

7K+ Views

Docker is a widely used tool for developing and managing containerized applications. It enables programmers to combine their applications with their dependencies into small, portable containers that are simple to set up and use on any platform. Directly mounting Network File System (NFS) shares or volumes inside a container using ... Read More

Advertisements