SlideShare a Scribd company logo
1 of 44
Download to read offline
Faster and Easier
Software
Development
using Docker
Platform
Mohd Syukor Abdul
Open Source Community
29 January 2019
2
Agenda
01 Introduction to Docker
02 Development using Docker
03 Deployment using Docker
04 Demonstration
3
Agenda
01 Introduction to Docker
02 Development using Docker
03 Deployment using Docker
04 Demonstration
4
What is Docker?
• Docker is a platform for developing, shipping and running applications using
container virtualization from development to production both on premises and in
the cloud.
• Docker containers wrap up a piece of software in a complete file system that
contains everything it needs to run: code, runtime, system tools, system libraries
– anything you can install on a server.
• This guarantees that it will always run the same, regardless of the environment
it is running in.
https://www.docker.com/
5
Why Docker?
Docker created the industry
standard for containers, so they
could be portable anywhere.
Docker provides a consistent
environment for application from
the development all the way to
production
Applications are safer in
containers and Docker provides
the strongest default isolation
capabilities in the industry
Containers share the machine’s
OS system kernel and therefore
do not require an OS per
application, driving higher server
efficiencies and reducing server
and licensing costs
6
Docker vs Virtual Machine
Docker Virtual Machine
Source: https://www.docker.com/resources/what-container
7
Docker: Terms
Docker Image
The basis of a Docker container. Represents a full application.
Docker Container
The standard unit in which the application service resides and executes.
Registry Service (Docker Hub or Docker Trusted Registry)
Cloud or server based storage and distribution service for your images.
Docker Engine
Creates, ships and runs Docker containers deployable on a physical
or virtual, host locally, in a datacenter or cloud service provider.
Docker Volume
The storage for persisting data generated by and used by Docker containers.
8
Docker Trusted Registry
Source: https://www.docker.com/products/orchestration
9
Docker CI/CD
Docker Continuous Integration and Continuous Deployment (CI/CD)
Source: https://blog.docker.com/2016/04/cicd-with-docker-cloud/
10
Docker Images and Containers Lifecycle
Dockerfile
Docker Image
Docker Container
BUILD
RUN COMMIT
Image
Container
(Running)
Container
(Stop)
Container
(Deleted)
Image
(Deleted)
Container
(Restart)
Docker Host
Docker Registry
Docker Registry
11
Data Persistence in Docker: Dir Mapping
• Use file system directories (mounting from host) during app development.
easily to edit app in folder /myapp1 at development host
easily to edit app in folder C:Usersuser10html at development host
docker run --name mynginx10 –d
-v /myapp1/html:/usr/share/nginx/html:ro
-P nginx
docker run --name mynginx20 –d
–v c:/Users/user10/html:/usr/share/nginx/html
–p 8080:80 nginx
12
Data Persistence in Docker: Docker Volume
• Use Docker volume for app development/deployment
docker volume create evoting_db
docker run –d –p 3306:3306
-v evoting_db:/var/lib/mysql
-e MYSQL_ROOT_PASSWORD=%P1lih4nR4y4#2023!
mariadb:10.4-bionic
Docker volume evoting_db
mapping to MariaDB
database folder
Creating Docker volume
named evoting_db
13
Docker Networking
docker run -v /path/to/app:/app –P –-name mynginx
bitnami/nginx:latest
docker port mynginx
8443/tcp -> 0.0.0.0:32768
8080/tcp -> 0.0.0.0:32769
Open browser:
http://localhost:32769
mynginx
docker run -v /path/to/app:/app –p 28080:8080 –p 28443:8443
–-name mynginx2 bitnami/nginx:latest
docker port mynginx2
8443/tcp -> 0.0.0.0:28443
8080/tcp -> 0.0.0.0:28080
Open browser:
http://localhost:28080
mynginx2
System
assigned
Developer
assigned
14
Docker Networking
• Create your own network (private network) for the containers:
docker network create predictive_net
• Usage:
docker run -d --name predictivedb
--network predictive_net
-v predictive_data:/var/lib/mysql
-e MYSQL_ROOT_PASSWORD=5up3rS3cr3tD4t4@w0rk
mariadb:10.4-bionic
docker volume create predictive_data
Private network nameContainer name
15
Agenda
01 Introduction to Docker
02 Development using Docker
03 Deployment using Docker
04 Demonstration
16
Development using Docker
Docker Desktop (Docker CE)
Docker in Virtual Machine (Windows/Linux)
Docker in Ubuntu Server in LXD in Ubuntu Desktop
Canonical MiniK8s
Rancher 2.0
RedHat MiniShift (okd.io)
Containers in Windows Server 2016/2019
Bare Metal (RancherOS)
Kubernetes
Kubernetes in LXD
VMware vSphere (VMware Photon OS)
+ more …
17
Operating Systems
https://hub.docker.com/search?type=image&certification_status=&category=os + more …
18
Programming Languages
https://hub.docker.com/search?type=image&category=languages + more …
19
Databases
https://hub.docker.com/search/?type=image&category=database + more …
20
Web Servers
IIS
+ more …
21
Basic Software Development Setup
 As references OR
 Used it as is OR
 Customized it
Public
Registry
INTERNET
Private
Registry
VM
LOCAL NETWORK
 For development
 For testing
 For staging
 For production
*Designed by Freepik from www.flaticon.com*
* *
22
Docker Workflow
Docker Host
Client
 Docker Command
Lines
 Docker Desktop
Docker Daemon
Containers
Container 1
Container 2
Container 3
Container 4
Images
Docker Registry
1
2
3
4
5
23
Docker Commands
docker image ls
docker container ls
docker ps
docker inspect <container-id>
docker start <container-id>
docker stop <container-id>
docker start <container-id>
docker rm <container-id>
docker rmi <image-id>
docker pull <registry/imagename:tag>
docker logs <container-id>
https://docs.docker.com/engine/reference/commandline/docker/
+ more …
24
Docker Hub aka Apps Store
• Docker Hub is the world’s largest repository of container images with an array of
content sources including container community developers, open source projects
and independent software vendors (ISV) building and distributing their code in
containers. Users get access to free public repositories for storing and sharing
images or can choose subscription plan for private repos.
• Currently, there are 1,943,463 available images in the Docker Hub (January 27th
2019).
https://hub.docker.com/
25
Docker Hub – https://hub.docker.com
26
Dockerfile
• Docker builds images automatically by reading the instructions from a Dockerfile
• Dockerfile: a text file that contains all commands, in order, needed to build a
given image.
• A Dockerfile adheres to a specific format and set of instructions.
https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
https://docs.docker.com/engine/reference/builder/
FROM php:7.2-apache
COPY src/ /var/www/html/
Dockerfile
docker build –t osdec/app1:1.0 .
Organization/name/category
App name
Version/revision/architecture
27
Docker Compose
• Compose is a tool for defining and running multi-container Docker applications.
• With Compose, you use a YAML file to configure your application’s services.
• Then, with a single command, you create and start all the services from your
configuration.
• Put your recipe into docker-compose.yml
• Then run: docker-compose up
• To stop: docker-compose down
https://docs.docker.com/compose/overview/
28
docker-compose.yml
version: '3.3'
services:
www1db:
image: mariadb:10.4
volumes:
- www1_db:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: Sup3rP@55w0rd
MYSQL_DATABASE: www1
MYSQL_USER: website1
MYSQL_PASSWORD: Ju5tP@55w0rd
wordpress:
depends_on:
- www1db
image: wordpress:5.0.3-php7.1-apache
ports:
- "41080:80"
restart: always
environment:
WORDPRESS_DB_HOST: www1db:3306
WORDPRESS_DB_NAME: www1
WORDPRESS_DB_USER: website1
WORDPRESS_DB_PASSWORD: Ju5tP@55w0rd
volumes:
www1_db: {}
Build WordPress website
https://docs.docker.com/compose/wordpress/
mkdir www1
cd www1
code docker-compose.yml
docker-compose up –d
docker-compose down
docker-compose stop
docker-compose rm
Open browser:
http://localhost:41080
29
Basic Setup for Development (BETTER)
Git
Repo
1
Docker
Host
4
Private
Registry
1
Docker
Desktop
*
Public
Registry
1
1 Private
Registry
1 – Dev
1 – Testing
1 – Staging
1 – Production
1 Git Server Your team? 1 Public
Registry
30
Agenda
01 Introduction to Docker
02 Development using Docker
03 Deployment using Docker
04 Demonstration
31
Deployment using Docker
Docker in Virtual Machine (Linux)
Docker Enterprise 2.0
Canonical Charmed Kubernetes
Rancher 2.0
RedHat OpenShift 3
SUSE CaaS Platform 3
Containers in Windows Server 2016/2019
Bare Metal (RancherOS)
VMware vSphere (VMware Photon OS)
Kata Containers 1.5
+ more …
32
Windows Server 2019
• Better Container technology than Windows Server 2016.
• Come with Docker EE.
• More reduced size for Windows images.
• Support Docker Swarm clustering.
• Registry moved from Docker Hub to Microsoft Private Registry
(mcr.microsoft.com).
• Support local port bindings.
• Support Ingress networking.
• Support named pipe in Windows containers.
• Integration with Visual Studio IDE.
33
Simple Deployment (Example)
VM VMVM
VM
VM
INTERNET
Physical Server:
• CPU: 12 cores
• RAM: 128 GB
• HDD: 3 TB 15K RPM
• Virt: Proxmox VE
Challenges:
 Networking
 Disks speed
 CPUs speed
 Firewall mapping
 Expertise
34
Simple Deployment (Example)
VIRTUAL MACHINE
Docker Container
Docker Private Network
Net 1 Net 2 Net 3 Net 4 Net 5
Challenges:
 Networking
 Disks speed
 CPUs speed
 Firewall mapping
 Expertise
35
Portainer: Simple Management UI
docker volume create portainer_data
docker run -d -p 9000:9000
-v /var/run/docker.sock:/var/run/docker.sock
-v portainer_data:/data
portainer/portainer
Linux Environment
docker volume create portainer_data
docker run -d -p 9000:9000 --name portainer --restart always
-v .pipedocker_engine:.pipedocker_engine
-v portainer_data:C:data
portainer/portainer
Windows 1803++ Containers Environment
https://www.portainer.io
36
Portainer Web GUI
Portainer running in Raspberry Pi
3 B+ with Grafana, InfluxDB and
MQTT broker running as Docker
containers.
37
The Forrester New Wave™: Enterprise Container Platform Software
Suites, Q4 2018.
GOING ENTERPRISE
38
Website: https://rancher.com/
Youtube Channel: Rancher Labs
The Forrester New Wave™: Enterprise Container Platform Software
Suites, Q4 2018.
GOING ENTERPRISE
39
Agenda
01 Introduction to Docker
02 Development using Docker
03 Deployment using Docker
04 Demonstration
40
Demo: PHP 5 and PHP 7
• Source code folder: C:Usersuser10myweb
PHP 5:
docker pull php:5-apache
cd C:Usersuser10myweb
docker run -d --name myweb_php5 `
-v ${PWD}:/var/www/html `
-p 55080:80 php:5-apache
PHP 7:
docker pull php:7-apache
docker run -d --name myweb_php7 `
-v C:/Users/user10/myweb:/var/www/html `
-p 57080:80 php:7-apache
myweb
php5 php7
41
Demo: Database Management Tool
Adminer:
docker pull adminer
docker run -d -p 38080:8080 adminer
PHPMyAdmin:
docker pull phpmyadmin/phpmyadmin
docker run --name myphpadmin -d -e PMA_HOST=dbhost -p 8080:80
phpmyadmin/phpmyadmin
42
Demo: WordPress Website Development
Database MariaDB v10.4:
 docker pull mariadb:10.4
 docker run -d --name wpdb --network www-net
-e MYSQL_ROOT_PASSWORD=P@55w0rd mariadb:10.4
Network www-net:
 docker network create www-net
WordPress v5.0.3 PHP 7.1 Apache Web Server:
 docker pull wordpress:5.0.3-php7.1-apache
 docker run -d --name www1 --network www-net -p 18080:80
wordpress:5.0.3-php7.1-apache
DB Tool Adminer:
 docker pull adminer
 docker run --name dbtool1 -d -p 23080:8080 --network www-net adminer
www-net
Adminer
WordPress
MariaDB
43
Demo: WordPress
WordPress
MariaDB
version: '3.3'
services:
www1db:
image: mariadb:10.4
volumes:
- www1_db:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: Sup3rP@55w0rd
MYSQL_DATABASE: www1
MYSQL_USER: website1
MYSQL_PASSWORD: Ju5tP@55w0rd
wordpress:
depends_on:
- www1db
image: wordpress:5.0.3-php7.1-apache
ports:
- "41080:80"
restart: always
environment:
WORDPRESS_DB_HOST: www1db:3306
WORDPRESS_DB_NAME: www1
WORDPRESS_DB_USER: website1
WORDPRESS_DB_PASSWORD: Ju5tP@55w0rd
volumes:
www1_db: {}
 mkdir www1
 cd www1
 code docker-compose.yml
 docker-compose up –d
Alternative: Use docker-compose
Thank You
https://www.slideshare.net/msyukor/presentations

More Related Content

What's hot

Introduction to Docker - VIT Campus
Introduction to Docker - VIT CampusIntroduction to Docker - VIT Campus
Introduction to Docker - VIT CampusAjeet Singh Raina
 
Docker: From Zero to Hero
Docker: From Zero to HeroDocker: From Zero to Hero
Docker: From Zero to Herofazalraja
 
Getting Started with DevOps
Getting Started with DevOpsGetting Started with DevOps
Getting Started with DevOpsAhmed Misbah
 
The Power of Azure DevOps
The Power of Azure DevOpsThe Power of Azure DevOps
The Power of Azure DevOpsJeff Bramwell
 
Top 5 benefits of docker
Top 5 benefits of dockerTop 5 benefits of docker
Top 5 benefits of dockerJohn Zaccone
 
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...XavierPestel
 
A la découverte de kubernetes
A la découverte de kubernetesA la découverte de kubernetes
A la découverte de kubernetesJulien Maitrehenry
 
K8s in 3h - Kubernetes Fundamentals Training
K8s in 3h - Kubernetes Fundamentals TrainingK8s in 3h - Kubernetes Fundamentals Training
K8s in 3h - Kubernetes Fundamentals TrainingPiotr Perzyna
 
Everything You Need To Know About Persistent Storage in Kubernetes
Everything You Need To Know About Persistent Storage in KubernetesEverything You Need To Know About Persistent Storage in Kubernetes
Everything You Need To Know About Persistent Storage in KubernetesThe {code} Team
 
Docker Swarm for Beginner
Docker Swarm for BeginnerDocker Swarm for Beginner
Docker Swarm for BeginnerShahzad Masud
 
Docker introduction (1)
Docker introduction (1)Docker introduction (1)
Docker introduction (1)Gourav Varma
 
Devops Devops Devops
Devops Devops DevopsDevops Devops Devops
Devops Devops DevopsKris Buytaert
 
Azure DevOps CI/CD For Beginners
Azure DevOps CI/CD  For BeginnersAzure DevOps CI/CD  For Beginners
Azure DevOps CI/CD For BeginnersRahul Nath
 
Docker Tours Meetup #1 - Introduction à Docker
Docker Tours Meetup #1 - Introduction à DockerDocker Tours Meetup #1 - Introduction à Docker
Docker Tours Meetup #1 - Introduction à DockerThibaut Marmin
 

What's hot (20)

Tour of Azure DevOps
Tour of Azure DevOpsTour of Azure DevOps
Tour of Azure DevOps
 
Introduction to Docker - VIT Campus
Introduction to Docker - VIT CampusIntroduction to Docker - VIT Campus
Introduction to Docker - VIT Campus
 
Docker: From Zero to Hero
Docker: From Zero to HeroDocker: From Zero to Hero
Docker: From Zero to Hero
 
Présentation Docker
Présentation DockerPrésentation Docker
Présentation Docker
 
Docker
DockerDocker
Docker
 
Getting Started with DevOps
Getting Started with DevOpsGetting Started with DevOps
Getting Started with DevOps
 
The Power of Azure DevOps
The Power of Azure DevOpsThe Power of Azure DevOps
The Power of Azure DevOps
 
Top 5 benefits of docker
Top 5 benefits of dockerTop 5 benefits of docker
Top 5 benefits of docker
 
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
 
DevOps with Kubernetes
DevOps with KubernetesDevOps with Kubernetes
DevOps with Kubernetes
 
A la découverte de kubernetes
A la découverte de kubernetesA la découverte de kubernetes
A la découverte de kubernetes
 
K8s in 3h - Kubernetes Fundamentals Training
K8s in 3h - Kubernetes Fundamentals TrainingK8s in 3h - Kubernetes Fundamentals Training
K8s in 3h - Kubernetes Fundamentals Training
 
Everything You Need To Know About Persistent Storage in Kubernetes
Everything You Need To Know About Persistent Storage in KubernetesEverything You Need To Know About Persistent Storage in Kubernetes
Everything You Need To Know About Persistent Storage in Kubernetes
 
Docker Swarm for Beginner
Docker Swarm for BeginnerDocker Swarm for Beginner
Docker Swarm for Beginner
 
Docker introduction (1)
Docker introduction (1)Docker introduction (1)
Docker introduction (1)
 
Docker Ecosystem on Azure
Docker Ecosystem on AzureDocker Ecosystem on Azure
Docker Ecosystem on Azure
 
Devops Devops Devops
Devops Devops DevopsDevops Devops Devops
Devops Devops Devops
 
Azure DevOps CI/CD For Beginners
Azure DevOps CI/CD  For BeginnersAzure DevOps CI/CD  For Beginners
Azure DevOps CI/CD For Beginners
 
Docker Tours Meetup #1 - Introduction à Docker
Docker Tours Meetup #1 - Introduction à DockerDocker Tours Meetup #1 - Introduction à Docker
Docker Tours Meetup #1 - Introduction à Docker
 
Kubernetes
KubernetesKubernetes
Kubernetes
 

Similar to Faster and Easier Software Development using Docker Platform

Docker
DockerDocker
DockerNarato
 
Docker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps DevelopmentDocker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps Developmentmsyukor
 
Docker for developers
Docker for developersDocker for developers
Docker for developersandrzejsydor
 
[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안양재동 코드랩
 
Develop with docker 2014 aug
Develop with docker 2014 augDevelop with docker 2014 aug
Develop with docker 2014 augVincent De Smet
 
Intro docker and demo monitor on docker
Intro docker and demo monitor on dockerIntro docker and demo monitor on docker
Intro docker and demo monitor on dockerWatcharin Yang-Ngam
 
containers and virtualization tools ( Docker )
containers and virtualization tools ( Docker )containers and virtualization tools ( Docker )
containers and virtualization tools ( Docker )Imo Inyang
 
.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...ICON UK EVENTS Limited
 
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...IBM France Lab
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...Matteo Bisi
 
Oracle WebLogic Server 12c with Docker
Oracle WebLogic Server 12c with DockerOracle WebLogic Server 12c with Docker
Oracle WebLogic Server 12c with DockerGuatemala User Group
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...Andrea Fontana
 
DCA. certificate slide Session 1
DCA. certificate slide Session 1DCA. certificate slide Session 1
DCA. certificate slide Session 1Hadi Tayanloo
 
Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016Roberto Sanz Ciriano
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerDavid Currie
 
Docker 1.9 Workshop
Docker 1.9 WorkshopDocker 1.9 Workshop
Docker 1.9 Workshop{code}
 
Docker_Interview_Questions__Answers.pdf
Docker_Interview_Questions__Answers.pdfDocker_Interview_Questions__Answers.pdf
Docker_Interview_Questions__Answers.pdfRifqiMultazamOfficia
 

Similar to Faster and Easier Software Development using Docker Platform (20)

Docker
DockerDocker
Docker
 
Docker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps DevelopmentDocker: A New Way to Turbocharging Your Apps Development
Docker: A New Way to Turbocharging Your Apps Development
 
Docker for developers
Docker for developersDocker for developers
Docker for developers
 
[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안[Codelab 2017] Docker 기초 및 활용 방안
[Codelab 2017] Docker 기초 및 활용 방안
 
Develop with docker 2014 aug
Develop with docker 2014 augDevelop with docker 2014 aug
Develop with docker 2014 aug
 
Intro docker and demo monitor on docker
Intro docker and demo monitor on dockerIntro docker and demo monitor on docker
Intro docker and demo monitor on docker
 
containers and virtualization tools ( Docker )
containers and virtualization tools ( Docker )containers and virtualization tools ( Docker )
containers and virtualization tools ( Docker )
 
.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...
 
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...
IBM Bluemix Paris Meetup #14 - Le Village by CA - 20160413 - Introduction à D...
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...
 
Oracle WebLogic Server 12c with Docker
Oracle WebLogic Server 12c with DockerOracle WebLogic Server 12c with Docker
Oracle WebLogic Server 12c with Docker
 
Introduction To Docker
Introduction To  DockerIntroduction To  Docker
Introduction To Docker
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...
 
DCA. certificate slide Session 1
DCA. certificate slide Session 1DCA. certificate slide Session 1
DCA. certificate slide Session 1
 
Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016Los contenedores en el mundo Microsoft #ReConnect2016
Los contenedores en el mundo Microsoft #ReConnect2016
 
Docker
DockerDocker
Docker
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and Docker
 
Docker 1.9 Workshop
Docker 1.9 WorkshopDocker 1.9 Workshop
Docker 1.9 Workshop
 
Docker for Developers
Docker for DevelopersDocker for Developers
Docker for Developers
 
Docker_Interview_Questions__Answers.pdf
Docker_Interview_Questions__Answers.pdfDocker_Interview_Questions__Answers.pdf
Docker_Interview_Questions__Answers.pdf
 

More from msyukor

Tsunami of Technologies. Are we prepared?
Tsunami of Technologies. Are we prepared?Tsunami of Technologies. Are we prepared?
Tsunami of Technologies. Are we prepared?msyukor
 
Docker for the Internet of Things (IoT): An Introduction
Docker for the Internet of Things (IoT): An IntroductionDocker for the Internet of Things (IoT): An Introduction
Docker for the Internet of Things (IoT): An Introductionmsyukor
 
Programming IoT with Docker: How to Start?
Programming IoT with Docker: How to Start?Programming IoT with Docker: How to Start?
Programming IoT with Docker: How to Start?msyukor
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peekmsyukor
 
Containerizing Web Application with Docker
Containerizing Web Application with DockerContainerizing Web Application with Docker
Containerizing Web Application with Dockermsyukor
 
Internet of Things: How To Start
Internet of Things: How To StartInternet of Things: How To Start
Internet of Things: How To Startmsyukor
 
Dockerizing IoT Services
Dockerizing IoT ServicesDockerizing IoT Services
Dockerizing IoT Servicesmsyukor
 

More from msyukor (7)

Tsunami of Technologies. Are we prepared?
Tsunami of Technologies. Are we prepared?Tsunami of Technologies. Are we prepared?
Tsunami of Technologies. Are we prepared?
 
Docker for the Internet of Things (IoT): An Introduction
Docker for the Internet of Things (IoT): An IntroductionDocker for the Internet of Things (IoT): An Introduction
Docker for the Internet of Things (IoT): An Introduction
 
Programming IoT with Docker: How to Start?
Programming IoT with Docker: How to Start?Programming IoT with Docker: How to Start?
Programming IoT with Docker: How to Start?
 
Docker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak PeekDocker for Web Developers: A Sneak Peek
Docker for Web Developers: A Sneak Peek
 
Containerizing Web Application with Docker
Containerizing Web Application with DockerContainerizing Web Application with Docker
Containerizing Web Application with Docker
 
Internet of Things: How To Start
Internet of Things: How To StartInternet of Things: How To Start
Internet of Things: How To Start
 
Dockerizing IoT Services
Dockerizing IoT ServicesDockerizing IoT Services
Dockerizing IoT Services
 

Recently uploaded

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsMehedi Hasan Shohan
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 

Recently uploaded (20)

5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software Solutions
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 

Faster and Easier Software Development using Docker Platform

  • 1. Faster and Easier Software Development using Docker Platform Mohd Syukor Abdul Open Source Community 29 January 2019
  • 2. 2 Agenda 01 Introduction to Docker 02 Development using Docker 03 Deployment using Docker 04 Demonstration
  • 3. 3 Agenda 01 Introduction to Docker 02 Development using Docker 03 Deployment using Docker 04 Demonstration
  • 4. 4 What is Docker? • Docker is a platform for developing, shipping and running applications using container virtualization from development to production both on premises and in the cloud. • Docker containers wrap up a piece of software in a complete file system that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. • This guarantees that it will always run the same, regardless of the environment it is running in. https://www.docker.com/
  • 5. 5 Why Docker? Docker created the industry standard for containers, so they could be portable anywhere. Docker provides a consistent environment for application from the development all the way to production Applications are safer in containers and Docker provides the strongest default isolation capabilities in the industry Containers share the machine’s OS system kernel and therefore do not require an OS per application, driving higher server efficiencies and reducing server and licensing costs
  • 6. 6 Docker vs Virtual Machine Docker Virtual Machine Source: https://www.docker.com/resources/what-container
  • 7. 7 Docker: Terms Docker Image The basis of a Docker container. Represents a full application. Docker Container The standard unit in which the application service resides and executes. Registry Service (Docker Hub or Docker Trusted Registry) Cloud or server based storage and distribution service for your images. Docker Engine Creates, ships and runs Docker containers deployable on a physical or virtual, host locally, in a datacenter or cloud service provider. Docker Volume The storage for persisting data generated by and used by Docker containers.
  • 8. 8 Docker Trusted Registry Source: https://www.docker.com/products/orchestration
  • 9. 9 Docker CI/CD Docker Continuous Integration and Continuous Deployment (CI/CD) Source: https://blog.docker.com/2016/04/cicd-with-docker-cloud/
  • 10. 10 Docker Images and Containers Lifecycle Dockerfile Docker Image Docker Container BUILD RUN COMMIT Image Container (Running) Container (Stop) Container (Deleted) Image (Deleted) Container (Restart) Docker Host Docker Registry Docker Registry
  • 11. 11 Data Persistence in Docker: Dir Mapping • Use file system directories (mounting from host) during app development. easily to edit app in folder /myapp1 at development host easily to edit app in folder C:Usersuser10html at development host docker run --name mynginx10 –d -v /myapp1/html:/usr/share/nginx/html:ro -P nginx docker run --name mynginx20 –d –v c:/Users/user10/html:/usr/share/nginx/html –p 8080:80 nginx
  • 12. 12 Data Persistence in Docker: Docker Volume • Use Docker volume for app development/deployment docker volume create evoting_db docker run –d –p 3306:3306 -v evoting_db:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=%P1lih4nR4y4#2023! mariadb:10.4-bionic Docker volume evoting_db mapping to MariaDB database folder Creating Docker volume named evoting_db
  • 13. 13 Docker Networking docker run -v /path/to/app:/app –P –-name mynginx bitnami/nginx:latest docker port mynginx 8443/tcp -> 0.0.0.0:32768 8080/tcp -> 0.0.0.0:32769 Open browser: http://localhost:32769 mynginx docker run -v /path/to/app:/app –p 28080:8080 –p 28443:8443 –-name mynginx2 bitnami/nginx:latest docker port mynginx2 8443/tcp -> 0.0.0.0:28443 8080/tcp -> 0.0.0.0:28080 Open browser: http://localhost:28080 mynginx2 System assigned Developer assigned
  • 14. 14 Docker Networking • Create your own network (private network) for the containers: docker network create predictive_net • Usage: docker run -d --name predictivedb --network predictive_net -v predictive_data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=5up3rS3cr3tD4t4@w0rk mariadb:10.4-bionic docker volume create predictive_data Private network nameContainer name
  • 15. 15 Agenda 01 Introduction to Docker 02 Development using Docker 03 Deployment using Docker 04 Demonstration
  • 16. 16 Development using Docker Docker Desktop (Docker CE) Docker in Virtual Machine (Windows/Linux) Docker in Ubuntu Server in LXD in Ubuntu Desktop Canonical MiniK8s Rancher 2.0 RedHat MiniShift (okd.io) Containers in Windows Server 2016/2019 Bare Metal (RancherOS) Kubernetes Kubernetes in LXD VMware vSphere (VMware Photon OS) + more …
  • 21. 21 Basic Software Development Setup  As references OR  Used it as is OR  Customized it Public Registry INTERNET Private Registry VM LOCAL NETWORK  For development  For testing  For staging  For production *Designed by Freepik from www.flaticon.com* * *
  • 22. 22 Docker Workflow Docker Host Client  Docker Command Lines  Docker Desktop Docker Daemon Containers Container 1 Container 2 Container 3 Container 4 Images Docker Registry 1 2 3 4 5
  • 23. 23 Docker Commands docker image ls docker container ls docker ps docker inspect <container-id> docker start <container-id> docker stop <container-id> docker start <container-id> docker rm <container-id> docker rmi <image-id> docker pull <registry/imagename:tag> docker logs <container-id> https://docs.docker.com/engine/reference/commandline/docker/ + more …
  • 24. 24 Docker Hub aka Apps Store • Docker Hub is the world’s largest repository of container images with an array of content sources including container community developers, open source projects and independent software vendors (ISV) building and distributing their code in containers. Users get access to free public repositories for storing and sharing images or can choose subscription plan for private repos. • Currently, there are 1,943,463 available images in the Docker Hub (January 27th 2019). https://hub.docker.com/
  • 25. 25 Docker Hub – https://hub.docker.com
  • 26. 26 Dockerfile • Docker builds images automatically by reading the instructions from a Dockerfile • Dockerfile: a text file that contains all commands, in order, needed to build a given image. • A Dockerfile adheres to a specific format and set of instructions. https://docs.docker.com/develop/develop-images/dockerfile_best-practices/ https://docs.docker.com/engine/reference/builder/ FROM php:7.2-apache COPY src/ /var/www/html/ Dockerfile docker build –t osdec/app1:1.0 . Organization/name/category App name Version/revision/architecture
  • 27. 27 Docker Compose • Compose is a tool for defining and running multi-container Docker applications. • With Compose, you use a YAML file to configure your application’s services. • Then, with a single command, you create and start all the services from your configuration. • Put your recipe into docker-compose.yml • Then run: docker-compose up • To stop: docker-compose down https://docs.docker.com/compose/overview/
  • 28. 28 docker-compose.yml version: '3.3' services: www1db: image: mariadb:10.4 volumes: - www1_db:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: Sup3rP@55w0rd MYSQL_DATABASE: www1 MYSQL_USER: website1 MYSQL_PASSWORD: Ju5tP@55w0rd wordpress: depends_on: - www1db image: wordpress:5.0.3-php7.1-apache ports: - "41080:80" restart: always environment: WORDPRESS_DB_HOST: www1db:3306 WORDPRESS_DB_NAME: www1 WORDPRESS_DB_USER: website1 WORDPRESS_DB_PASSWORD: Ju5tP@55w0rd volumes: www1_db: {} Build WordPress website https://docs.docker.com/compose/wordpress/ mkdir www1 cd www1 code docker-compose.yml docker-compose up –d docker-compose down docker-compose stop docker-compose rm Open browser: http://localhost:41080
  • 29. 29 Basic Setup for Development (BETTER) Git Repo 1 Docker Host 4 Private Registry 1 Docker Desktop * Public Registry 1 1 Private Registry 1 – Dev 1 – Testing 1 – Staging 1 – Production 1 Git Server Your team? 1 Public Registry
  • 30. 30 Agenda 01 Introduction to Docker 02 Development using Docker 03 Deployment using Docker 04 Demonstration
  • 31. 31 Deployment using Docker Docker in Virtual Machine (Linux) Docker Enterprise 2.0 Canonical Charmed Kubernetes Rancher 2.0 RedHat OpenShift 3 SUSE CaaS Platform 3 Containers in Windows Server 2016/2019 Bare Metal (RancherOS) VMware vSphere (VMware Photon OS) Kata Containers 1.5 + more …
  • 32. 32 Windows Server 2019 • Better Container technology than Windows Server 2016. • Come with Docker EE. • More reduced size for Windows images. • Support Docker Swarm clustering. • Registry moved from Docker Hub to Microsoft Private Registry (mcr.microsoft.com). • Support local port bindings. • Support Ingress networking. • Support named pipe in Windows containers. • Integration with Visual Studio IDE.
  • 33. 33 Simple Deployment (Example) VM VMVM VM VM INTERNET Physical Server: • CPU: 12 cores • RAM: 128 GB • HDD: 3 TB 15K RPM • Virt: Proxmox VE Challenges:  Networking  Disks speed  CPUs speed  Firewall mapping  Expertise
  • 34. 34 Simple Deployment (Example) VIRTUAL MACHINE Docker Container Docker Private Network Net 1 Net 2 Net 3 Net 4 Net 5 Challenges:  Networking  Disks speed  CPUs speed  Firewall mapping  Expertise
  • 35. 35 Portainer: Simple Management UI docker volume create portainer_data docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer Linux Environment docker volume create portainer_data docker run -d -p 9000:9000 --name portainer --restart always -v .pipedocker_engine:.pipedocker_engine -v portainer_data:C:data portainer/portainer Windows 1803++ Containers Environment https://www.portainer.io
  • 36. 36 Portainer Web GUI Portainer running in Raspberry Pi 3 B+ with Grafana, InfluxDB and MQTT broker running as Docker containers.
  • 37. 37 The Forrester New Wave™: Enterprise Container Platform Software Suites, Q4 2018. GOING ENTERPRISE
  • 38. 38 Website: https://rancher.com/ Youtube Channel: Rancher Labs The Forrester New Wave™: Enterprise Container Platform Software Suites, Q4 2018. GOING ENTERPRISE
  • 39. 39 Agenda 01 Introduction to Docker 02 Development using Docker 03 Deployment using Docker 04 Demonstration
  • 40. 40 Demo: PHP 5 and PHP 7 • Source code folder: C:Usersuser10myweb PHP 5: docker pull php:5-apache cd C:Usersuser10myweb docker run -d --name myweb_php5 ` -v ${PWD}:/var/www/html ` -p 55080:80 php:5-apache PHP 7: docker pull php:7-apache docker run -d --name myweb_php7 ` -v C:/Users/user10/myweb:/var/www/html ` -p 57080:80 php:7-apache myweb php5 php7
  • 41. 41 Demo: Database Management Tool Adminer: docker pull adminer docker run -d -p 38080:8080 adminer PHPMyAdmin: docker pull phpmyadmin/phpmyadmin docker run --name myphpadmin -d -e PMA_HOST=dbhost -p 8080:80 phpmyadmin/phpmyadmin
  • 42. 42 Demo: WordPress Website Development Database MariaDB v10.4:  docker pull mariadb:10.4  docker run -d --name wpdb --network www-net -e MYSQL_ROOT_PASSWORD=P@55w0rd mariadb:10.4 Network www-net:  docker network create www-net WordPress v5.0.3 PHP 7.1 Apache Web Server:  docker pull wordpress:5.0.3-php7.1-apache  docker run -d --name www1 --network www-net -p 18080:80 wordpress:5.0.3-php7.1-apache DB Tool Adminer:  docker pull adminer  docker run --name dbtool1 -d -p 23080:8080 --network www-net adminer www-net Adminer WordPress MariaDB
  • 43. 43 Demo: WordPress WordPress MariaDB version: '3.3' services: www1db: image: mariadb:10.4 volumes: - www1_db:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: Sup3rP@55w0rd MYSQL_DATABASE: www1 MYSQL_USER: website1 MYSQL_PASSWORD: Ju5tP@55w0rd wordpress: depends_on: - www1db image: wordpress:5.0.3-php7.1-apache ports: - "41080:80" restart: always environment: WORDPRESS_DB_HOST: www1db:3306 WORDPRESS_DB_NAME: www1 WORDPRESS_DB_USER: website1 WORDPRESS_DB_PASSWORD: Ju5tP@55w0rd volumes: www1_db: {}  mkdir www1  cd www1  code docker-compose.yml  docker-compose up –d Alternative: Use docker-compose