DevOps
Ubuntu 20.04 on VirtualBox
Share this postShare on TwitterShare 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 download…
Read MoreHow to install Terraform on Ubuntu 18.04
Share this postShare on TwitterShare 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 Hashicorp…
Read MoreHow to create a ci cd pipeline for building docker images
Share this postShare on TwitterShare 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 will…
Read MoreHow to run minikube on a virtualbox vm
Share this postShare on TwitterShare 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 can…
Read MoreHow to install packer on Ubuntu 18.04
Share this postShare on TwitterShare 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. Packer…
Read MoreGetting started with GitLab
Share this postShare on TwitterShare 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 about…
Read MoreInstall visual studio code on ubuntu 16.4 desktop
Share this postShare on TwitterShare 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 for…
Read MoreHow to run a python django app in docker
Share this postShare on TwitterShare 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 container.…
Read MoreHow to install Ubuntu terminal for Windows 10
Share this postShare on TwitterShare 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 need…
Read MoreHow to run a python app with docker compose
Share this postShare on TwitterShare 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 app.…
Read More