Tag: Docker
-
Basic Traefik proxy server setup
Recently, I came across a tool called Traefik. Traefik is a tool that takes care of routing HTTP requests to different Docker containers running on a server. This let’s you focus more on your containers and projects and less on server maintenance. The basic setup I had in mind was to have two domains living…
-
Run Angular 18 Karma Unit Tests in Docker
I have been working on a frontend library using Ionic 8 and Angular v18 and wanted to set up Karma Unit Tests. One issue I ran into was getting the tests to run locally and, later, in a Docker container in a CI/CD pipeline so I put together a GitHub Repository as an example. This…