Tag: Docker

How to show X11 windows with Docker on Mac

I never would have thought that I would need this feature. Up until now, I only used Docker to get some non-UI environments running, like a local PostgreSQL database or an Android build environment for GitLab CI. Right now I am part of a team called ‘Happy Robots’ that works on the fi...

Run Code on Linux (Mac) & Windows with Docker EASY

Consider this scenario: you want to test out some new AI model you’ve just read about on Medium.com, but you’ve noticed that the code requires a Linux or Mac operating system. How do you get past this? Docker provides a practical solution and helps to streamline the process of running...

How to use Docker on Windows 10 (without Docker Desktop)

In this tutorial I will show you how to run Docker on Windows 10 without installing Docker Desktop (which is paid software). 1. Check if you have WSL 2 enabled on your system Type this command in PowerShell: wsl -l -v You should see version 2 of WSL, if not you will need to instal...

How to change docker root data directory

The standard data directory used by docker is /var/lib/docker, and since this directory will store all your images, volumes, etc. it can become quite large in a relative small amount of time. If you want to move the docker data directory on another location you can follow the following simple ste...

Docker Container as Jenkins Agent

This article gives a walk through on the steps to set docker container as a Jenkins agent. Photo by Luca Bravo on Unsplash What if you are building a huge project which involves multiple scripts, multiple environment variables, multiple actions which has to be performed on a...

Preparation, Docker Image Push and Deployment for Containerized Voting Application in Kubernetes Cluster using Docker, Azure Container Registry (ACR) and Azure Kubernetes Service (AKS)

This is another project based on a real-world scenario, where I had to act as a DevOps Engineer, and show a new team member how to deploy an application on a Kubernetes cluster. This cluster is part of The Cloud Bootcamp project, and I prepared this new team member to deploy the voting applicatio...

DevSecOps: Deploying the 2048 Game on Docker and Kubernetes with Jenkins CI/CD

Hello friends, we will be deploying a React Js 2048 Game. We will be using Jenkins as a CICD tool and deploying our application on a Docker container and Kubernetes Cluster. I Hope this detailed blog is useful. Youtube video : https://youtu.be/21Z-u8Fd_Mk?si=Ux4WabhFAxtYH9-g GitHub Repo :...