What is: Docker – Basic Concepts
This article discusses about Docker, what is it, how it is useful to you and what you can achieve with it. Article explains Docker and Container concept among other things
This article discusses about Docker, what is it, how it is useful to you and what you can achieve with it. Article explains Docker and Container concept among other things
Pre-requisite : 1. Docker must be installed. 2. Docker-compose must be installed. Steps: Pull “nginx” and “php-fpm” docker images docker pull nginx:latestdocker pull php:7.1-fpm (Nginx latest image is recommended and for PHP choose the specific version that your code supports) Firstly, we will launch temporary docker for nginx We are copying nginx configuration files into our system (afterwards … Read more How to: Dockerize NGINX-PHP application