VMWare Series : Kubernetes as a Service on vCloud Director

Introduction A vCloud Director extension called CSE (Container Service Extension) has been released March 2018 in order to manage the life cycle of Kubernetes clusters for tenants. This extension has to be installed on a vCloud Director Instance by the service provider. What can you do with CSE ? It allows your customers to rapidly …

VMWare Series : Kubernetes as a Service on vCloud Director Read More »

ITIL Introduction and Summary

What is ITIL ? ITIL, formerly an acronym for Information Technology Infrastructure Library, is a set of detailed practices for IT service management (ITSM) that focuses on aligning IT services with the needs of business. ITIL describes processes, procedures, tasks, and checklists which are not organization-specific nor technology-specific, but can be applied by an organization toward strategy, delivering value, …

ITIL Introduction and Summary Read More »

Docker Series : Configure a LAMP stack with Docker Compose

What is Docker Compose As seen in my previous article, we can configure docker based LAMP stack using Docker images. Another way to do it is to use Docker Compose. This tool can be used to define and run multi-container applications easily. Indeed, through a YAML file (docker-compose.yml) we will store all the configurational information needed …

Docker Series : Configure a LAMP stack with Docker Compose Read More »

Docker Series : Install Docker on Windows

Today, let’s see how to configure a Docker environment on your Windows 10 Computer. Docker Desktop requirements If you are running an old version of Windows, you can use Docker ToolBox instead. Download Docker Desktop First thing to do is to download Docker Desktop and follow the instructions ! Start Docker Desktop for Windows Docker does not start automatically …

Docker Series : Install Docker on Windows Read More »

Docker Series : How to create Docker images and run containers

What is a Docker image A Docker image is a file, comprised of multiple layers, used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. When the Docker user runs an image, it becomes one or …

Docker Series : How to create Docker images and run containers Read More »