Ubuntu 20.04 on VirtualBox

How to install Ubuntu terminal for Windows 10

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email This post will show you how to get up and running with Ubuntu 20.04 on VirtualBox.   Prerequisites You will need to have VirtualBox installed on your workstation. VirtualBox can be downloaded from here.   Steps First you will need to…

Read More

How to install Terraform on Ubuntu 18.04

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email This post will show you how to install Terraform on Ubuntu 18.04 Terraform is an open-source infrastructure as code software tool created by HashiCorp. It enables users to define and provision a datacenter infrastructure using a high-level configuration language known as…

Read More

How to create a ci cd pipeline for building docker images

how to create a ci cd pipeline for building docker images

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email This post walks through how to create a CI / CD pipeline for building docker images. We will create the docker image from a docker file. The docker file will be stored in a GitLab repository. In the GitLab repository we…

Read More

How to run minikube on a virtualbox vm

How to run minikube in a virtualbox vm

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email Minikube is a tool that makes it easy to run Kubernetes locally. With minikube you can run a single node kubernetes cluster on your workstation. If you are looking to try out kubernetes or need a kubernetes sand box environment minikube…

Read More

How to install packer on Ubuntu 18.04

packer_logo

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email This post will show you how to install packer on ubuntu 18.04. Packer is an open source tool for creating identical machine images for multiple platforms from a single source configuration. Packer is lightweight and runs on every major operating system.…

Read More

Getting started with GitLab

gitlab-logo

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email This post is a getting started guide for GitLab. GitLab is described as a Single application for the entire DevOps lifecycle. It allows you to centralize your code in git repositories and create ci cd pipelines as code. You can learn more…

Read More

Install visual studio code on ubuntu 16.4 desktop

vscode

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions…

Read More

How to run a python django app in docker

How to run a python django app in docker

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email Django, described as the The web framework for perfectionists with deadlines is a high-level Python Web framework that encourages rapid development and clean design. In this post I will show you how to get Django up and running in a docker…

Read More

How to install Ubuntu terminal for Windows 10

How to install Ubuntu terminal for Windows 10

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email   Ubuntu on Windows allows you to use Ubuntu Terminal and run Ubuntu command line utilities like bash, ssh, git, apt and more on Windows. This post shows you how to install the Ubuntu terminal on Windows 10 Steps First you…

Read More

How to run a python app with docker compose

How to run a python app with docker compose

Share this postShare on X (Twitter)Share on FacebookShare on PinterestShare on LinkedInShare on Email How to run a python app with docker compose   This post goes through the steps required to run a python flask app with docker compose and covers the following… Installing docker. Installing docker compose. Configuring components required to run the…

Read More