Home
ilhicas
Cancel

Serving a Vue, Angular, or React App with nginx in docker

If you usually develop with any of the main frontend frameworks/libraries, you probably want to deploy these apps. If you are familiar with docker, you probably have met the advantages, and would ...

Nginx and Let's Encrypt in Docker in a single command

If you have searched in the past for a Dockerized solution containing Let’s Encrypt certificate generation inside an nginx in a simple, automated manner, you might have come across with a lot of po...

Using Docker secrets to initialize postgres container databases

This post describes how you may achieve a postgres container initialization using a bash script using docker secrets (you could use configs as well) without having to modify official image for post...

Get Docker Logs file size for all containers

This Post assumes you are using a linux OS Recently I was asked on how to get the size of the logs the containers were producing on a default docker installation without using any log driver. ...

Docker build with --build-arg with multiple arguments from file

Introduction On my last post I described how to use a single ARG with a list of packages to be installed on an alpine image. But what happens when your Dockefile contains a multitude of BUILD ARG...