SlideShare a Scribd company logo
DRUPAL DEVELOPMENT WITH DOCKERDRUPAL DEVELOPMENT WITH DOCKER
ABOUT MEABOUT ME
ABOUT YOUABOUT YOU
“Works in my machine“
DOCKERDOCKER
CONTAINERSCONTAINERS
Isolate applications like a VM
Doesn't create a whole VM
Provides signi cant performance boost and reduces
the size of the application
VM Containers
COMPARISONCOMPARISON
COMMON TERMSCOMMON TERMS
Images
Containers
DOCKERFILEDOCKERFILE
FROM php:7.1-apache
RUN apt-get update && apt-get install mysql-client -y
COPY /code/ /var/www/html/new/place
WORKDIR /var/www/html/new/place
DOCKER COMMANDSDOCKER COMMANDS
Build an image from a Docker le
docker build [OPTIONS] CONTAINER [CONTAINER...]
Execute an image
docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
List downloaded images
docker images [OPTIONS] [REPOSITORY[:TAG]]
Run a command in a running container
docker exec [OPTIONS] CONTAINER COMMAND [ARG...]
List running containers
docker ps [OPTIONS]
List stopped containers
docker ps -a
Stop running containers
docker stop [OPTIONS] CONTAINER [CONTAINER...]
Remove one or more containers
docker rm [OPTIONS] CONTAINER [CONTAINER...]
SINGLE SERVICESINGLE SERVICE
docker run -d -p 8080:80 drupal:7.58
Check the running containers
docker ps
CONTAINER ID IMAGE COMMAND
949b1aaa0bbd drupal:7.58 "docker-php-entrypoi…"
MULTIPLE SERVICESMULTIPLE SERVICES
Setup the MySQL service
docker run -d --name=db -e MYSQL_DATABASE=default 
-e MYSQL_ROOT_PASSWORD=root mysql:5.6
Setup the web service
docker run -d --name=web -p 8080:80 
--link db:db drupal:7.58
Setup the DB administration tool
docker run -d --name=phpmyadmin -p 8081:80 
-e MYSQL_ROOT_PASSWORD=root --link db:db phpmyadmin/phpmyadmin
DOCKER VOLUMESDOCKER VOLUMES
Setup the MySQL service with persistent data
docker run -d --name db -e MYSQL_DATABASE=default 
-e MYSQL_ROOT_PASSWORD=root 
-v `pwd`/dbdata:/var/lib/mysql mysql:5.6
Setup the web service with persistent data
docker run -d --name=web -p 8080:80 --link db:db 
-v `pwd`/drupal-7.59:/var/www/html drupal:7.58
DOCKER COMPOSEDOCKER COMPOSE
Lets us de ne all our services in one con guration le.
With one command, it starts all the services we need.
DOCKER COMPOSE COMMANDSDOCKER COMPOSE COMMANDS
Start de ned services
docker-compose up [options] [--scale SERVICE=NUM...] [SERVICE..
Build or rebuild services
docker-compose build [options]
Stop running services
docker-compose stop [options] [SERVICE...]
Stops containers and removes containers, networks,
volumes, and images
docker-compose down [options]
docker-compose.yml
version: "3"
services:
web:
image: drupal:7.58
volumes:
- ./drupal-7.59:/var/www/html
ports:
- 8080:80
db:
image: mysql:5.6
volumes:
- ./dbdata:/var/lib/mysql
environment:
MYSQL_USER: root
MYSQL_PASSWORD: root
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: default
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
8081 80
DOCKER WITH DRUSHDOCKER WITH DRUSH
...
drush:
image: drush/drush:8
volumes:
- ./drupal-7.59:/app
docker-compose run --rm drush [COMMANDS]
#!/usr/bin/env bash
drush="docker-compose run --rm drush"
$drush sql-drop -y
pv ./backup.sql | docker exec -i projectname_db_1 mysql -u root
$drush cr
$drush updb --entity-updates -y
$drush cim -y
$drush cr
$drush upwd admin admin
Q & AQ & A
THANK YOUTHANK YOU

More Related Content

TXT
Powershell direct
PPTX
Nats meetup oct 2016 docker 112
PDF
Docker 1.12 and SwarmKit
PDF
Microsoft SQL Server with Linux and Docker
ODP
Forget MAMP and WAMP, Use Virtual Box to Have a Real Ubuntu Server
PPTX
WP-CLI Workshop at WordPress Meetup Cluj-Napoca
PDF
DevOps Meetup ansible
PPT
Backbone.js and rails - BanLV
Powershell direct
Nats meetup oct 2016 docker 112
Docker 1.12 and SwarmKit
Microsoft SQL Server with Linux and Docker
Forget MAMP and WAMP, Use Virtual Box to Have a Real Ubuntu Server
WP-CLI Workshop at WordPress Meetup Cluj-Napoca
DevOps Meetup ansible
Backbone.js and rails - BanLV

What's hot (20)

PPT
Basic Knowledge on MySql Replication
PDF
Drupal7 MEMCACHE
PDF
A Better WordPress Workflow with WP-CLI
PDF
Installation of LAMP Server with Ubuntu 14.10 Server Edition
PDF
Drupal VM for Drupal 8 Dev - MidCamp 2017
PDF
Talk about Ansible and Infrastructure as Code
PDF
Migrating a Site Quickly with SSH and WP-CLI (It's not as scary as you think!)
PPTX
Compressing & decompressing in mule
PDF
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
PDF
The WordPress developer's toolkit
PPT
PDF
Caching for Cash: Caching
PPTX
Groovy in Mule
PDF
Caching for Cash: Benchmarking and Profiling
PPTX
Drupal from scratch
PDF
Virtual Infrastructure
ODP
ansible why ?
PPTX
Introduction to Packer and Suitcase: A Packer-based OS Image Build System
KEY
Refactoring.the.ruby.way
PDF
How to Transfer Magento Project from One Server to another Server
Basic Knowledge on MySql Replication
Drupal7 MEMCACHE
A Better WordPress Workflow with WP-CLI
Installation of LAMP Server with Ubuntu 14.10 Server Edition
Drupal VM for Drupal 8 Dev - MidCamp 2017
Talk about Ansible and Infrastructure as Code
Migrating a Site Quickly with SSH and WP-CLI (It's not as scary as you think!)
Compressing & decompressing in mule
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
The WordPress developer's toolkit
Caching for Cash: Caching
Groovy in Mule
Caching for Cash: Benchmarking and Profiling
Drupal from scratch
Virtual Infrastructure
ansible why ?
Introduction to Packer and Suitcase: A Packer-based OS Image Build System
Refactoring.the.ruby.way
How to Transfer Magento Project from One Server to another Server
Ad

Similar to Drupal Development with Docker (20)

PDF
Docker - introduction
PPTX
Тарас Кирилюк — Docker basics. How-to for Drupal developers
PPTX
Docker for dev
PPTX
Using Docker to boost your development experience with Drupal
PDF
Luciano Fiandesio - Docker 101 | Codemotion Milan 2015
PDF
Docker workshop
PDF
Dockerize your Symfony application - Symfony Live NYC 2014
PDF
Play With Docker
PDF
Learning Docker with Thomas
PPT
Docker introduction
PDF
Docker for developers
PDF
Docker for developers
PDF
Super powered Drupal development with docker
PDF
Docker 101
PPTX
Primi passi con Docker - ItalianCoders - 12-01-2021
PDF
Containerizing Web Application with Docker
PDF
MySQL on Docker - Containerizing the Dolphin
PDF
Docker.pdf
PDF
Docker from scratch
Docker - introduction
Тарас Кирилюк — Docker basics. How-to for Drupal developers
Docker for dev
Using Docker to boost your development experience with Drupal
Luciano Fiandesio - Docker 101 | Codemotion Milan 2015
Docker workshop
Dockerize your Symfony application - Symfony Live NYC 2014
Play With Docker
Learning Docker with Thomas
Docker introduction
Docker for developers
Docker for developers
Super powered Drupal development with docker
Docker 101
Primi passi con Docker - ItalianCoders - 12-01-2021
Containerizing Web Application with Docker
MySQL on Docker - Containerizing the Dolphin
Docker.pdf
Docker from scratch
Ad

More from Promet Source (20)

PPTX
How To Start Building Your Own Website With Drupal by Mary Chris Casis
PDF
DrupalCamp Cebu 2018 R&F by Andrew Kucharski
PDF
Unit test in drupal 8 by Pratomo Ardianto Drupalcamp Cebu 2018
PDF
Migrating to-Drupal-8 by Bryan Manalo
PDF
Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018
PDF
Migrating Drupal 7 to Drupal 8
PPTX
Web Accessibility in Drupal
PDF
Drupal Continuous Integration and devops - Beyond Jenkins
PDF
Drupal 8 Involvement with Promet Source
PDF
Using Commerce License for Premium Content on Drupal Sites
PDF
Behavioral driven development with Behat
PDF
Composer tools and frameworks for Drupal
PDF
Responsive Design Testing the Promet Way
PDF
Optimize and succeed your next Fixed Budget Project planning process
PDF
Diy continuous integration
PPT
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will come
PPTX
Getting agile with drupal
PPT
Project Estimation Presentation - Donte's 8th level of estimating level of ef...
PDF
DrupalCon 2013 Making Support Fun & Profitable
PDF
DevOps for Drupal: Why We Cook With Chef
How To Start Building Your Own Website With Drupal by Mary Chris Casis
DrupalCamp Cebu 2018 R&F by Andrew Kucharski
Unit test in drupal 8 by Pratomo Ardianto Drupalcamp Cebu 2018
Migrating to-Drupal-8 by Bryan Manalo
Why and When to use Drupal by Luc Bezier - Drupalcamp Cebu 2018
Migrating Drupal 7 to Drupal 8
Web Accessibility in Drupal
Drupal Continuous Integration and devops - Beyond Jenkins
Drupal 8 Involvement with Promet Source
Using Commerce License for Premium Content on Drupal Sites
Behavioral driven development with Behat
Composer tools and frameworks for Drupal
Responsive Design Testing the Promet Way
Optimize and succeed your next Fixed Budget Project planning process
Diy continuous integration
Higher Ed Web 2013 presentation - Field of Dreams, build it and they will come
Getting agile with drupal
Project Estimation Presentation - Donte's 8th level of estimating level of ef...
DrupalCon 2013 Making Support Fun & Profitable
DevOps for Drupal: Why We Cook With Chef

Recently uploaded (20)

PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Introduction to Artificial Intelligence
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
System and Network Administraation Chapter 3
PDF
Nekopoi APK 2025 free lastest update
PPTX
assetexplorer- product-overview - presentation
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
ai tools demonstartion for schools and inter college
PDF
top salesforce developer skills in 2025.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
L1 - Introduction to python Backend.pptx
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Transform Your Business with a Software ERP System
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Wondershare Filmora 15 Crack With Activation Key [2025
Introduction to Artificial Intelligence
Upgrade and Innovation Strategies for SAP ERP Customers
System and Network Administraation Chapter 3
Nekopoi APK 2025 free lastest update
assetexplorer- product-overview - presentation
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Operating system designcfffgfgggggggvggggggggg
ai tools demonstartion for schools and inter college
top salesforce developer skills in 2025.pdf
Design an Analysis of Algorithms I-SECS-1021-03
L1 - Introduction to python Backend.pptx
Softaken Excel to vCard Converter Software.pdf
Computer Software and OS of computer science of grade 11.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Transform Your Business with a Software ERP System
Which alternative to Crystal Reports is best for small or large businesses.pdf
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool

Drupal Development with Docker