Docker basics – clone git project

Getting started with docker on Windows host machine? Great this is a quick Docker intro tutorial on how to pull, build, run and access docker containers on exposed port in the browser. We will also highlight some common problems when trying to run docker container on...

Docker clean-up – cheat sheet

How to quickly clean-up docker development env? If you used docker-compose up to start your app. To stop those containers to run: docker-compose down docker-compose build –no-cache docker-compose up -d Kill all docker containers This command will kill all...

Getting started with Kubernetes

Once you get to know Docker, it is time to learn some truly mystic tool for Continuous integration / Continuous deployment (CI/CD). Kubernetes, which does all management and automation for application (containers) scaling and deployment. To work with Kubernetes you...