Posts Tagged ‘docker’
How 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 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 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 MoreHow to install docker on windows 7
Share this postShare on TwitterShare on FacebookShare on PinterestShare on LinkedInShare on Email Docker is a computer program that performs operating-system-level virtualization, also known as “containerization”. Containers created with docker allow you to create isolated development environments on your system. These containers are also portable so you can easily move them from machine to machine…
Read MoreHow to Install docker on Ubuntu 16.4 desktop
Share this postShare on TwitterShare on FacebookShare on PinterestShare on LinkedInShare on Email Docker provides container software that is ideal for developers and teams looking to get started and experimenting with container-based applications. If you are looking to explore docker then a local install on Ubuntu desktop is a good place to start. The following…
Read More