Articles and Lessons tagged with Docker

Using OS Environment Variables in Angular (with Docker)

Using OS Environment Variables in Angular (with Docker)

Posted Jan 13, 2019 | | By Maina Wycliffe | Angular
Angular has its way of handling different target environments, through angular environments files – which you can learn more about here. The issue with this approach is that it requires you to commit keys and configuration to your version control. …
Read More

Golang – Building Small Docker Images

Golang – Building Small Docker Images

Posted Jan 4, 2019 | | By Maina Wycliffe | Go (golang)
In this post, we are going to see how we can reduce the size of our final docker image size for our golang app. To achieve this, we are going to be using the scratch docker image. This is going to reduce the size of the final image by over 95%. Why? …
Read More

Docker Compose - Angular Multi Environment Deployments

Docker Compose - Angular Multi Environment Deployments

Posted Sep 26, 2018 | | By Maina Wycliffe | Angular
In a previous post, we covered how to use multiple dockerfile to target different environments for an angular app. In this post, we are going to take things a bit further along using docker compose. We shall use multiple docker compose configuration …
Read More

Building Docker Images for Deploying Angular Apps

Building Docker Images for Deploying Angular Apps

Posted Aug 29, 2018 | | By Maina Wycliffe | Angular
In this post, we are going to look at how to deploy an angular app using docker. Docker containers can be used to simplify the process of developing, testing and deploying your app into different environments. With docker containers, you can be …
Read More