SlideShare a Scribd company logo
1 of 19
Docker for Drupal development
Drupal North East - 26 April 2017
About me
William Mortada
Digital Communications Consultant
Community IT Academy
@wmortada
Why Docker?
21 April 2016
Ubuntu 16.04 released
Ships with PHP 7
Some of my older websites stop working...
Development tools
What do you have installed on your development machine?
● drush
● drupal console
● ruby
● node.js
● npm
● sass
● less
● ...
Docker to the rescue
Infrastructure as code
Customisable setup for each project
Consistent development environment
Easy to share with other developers
Low resource use
Fast to start
What is Docker?
Docker
“Docker is an open-source project that automates the deployment of applications
inside software containers. Docker containers wrap up a piece of software in a
complete filesystem that contains everything it needs to run: code, runtime, system
tools, system libraries – anything you can install on a server.”
- Wikipedia
Everything in containers
● Web server: Apache / Nginx
● Development language: PHP
● Database: MySQL / MariaDB
● Database management: phpMyAdmin
● Mail client: mailhog
● Caching: redis / memcached / varnish
● Search engine: solr
● Stylesheet compilation: sass
● ...
Docker compose
Manage multiple containers
Define links between services
Manage storage
Get started
Installation
● Linux
○ add Docker repository
○ manually install Docker Compose
● Mac
○ Docker for Mac
● Windows
○ Docker for Windows
Code examples
Basic PHP container
version: '2'
services:
php:
image: php:5.6-apache
ports:
- 8000:80
volumes:
- ./htdocs/:/var/www/html
$ docker-compose up
Drupal development environment
version: '2'
services:
php:
build: ./php/
ports:
- 8000:80
links:
- db
volumes:
- ./htdocs/:/var/www
db:
image: mysql:5.7
volumes:
- ./data:/var/lib/mysql
$ docker-compose up -d
$ . scripts/functions.sh
$ drush status
Sass compilation
docker run -i --rm
-v $FileParentDir$:$FileParentDir$
-w $FileParentDir$
jbergknoff/sass
-t compressed $FilePath$
$FileParentDir$/css/$FileNameWithoutExtension$.css
Tell me more!
Further reading
osteel: How to use Docker for local web development
jungle & pepe-roni: Docker based development environment
wodby: Docker for Drupal
Any questions?
@wmortada
william@mortada.co.uk

More Related Content

What's hot

Red Hat Container Development Kit
Red Hat Container Development KitRed Hat Container Development Kit
Red Hat Container Development KitLalatendu Mohanty
 
VASCAN - Docker and Security
VASCAN - Docker and SecurityVASCAN - Docker and Security
VASCAN - Docker and SecurityMichael Irwin
 
GlusterFS Containers
GlusterFS ContainersGlusterFS Containers
GlusterFS ContainersMohamed Ashiq
 
How Docker didn't invent containers (Docker Meetup Brno #1)
How Docker didn't invent containers (Docker Meetup Brno #1)How Docker didn't invent containers (Docker Meetup Brno #1)
How Docker didn't invent containers (Docker Meetup Brno #1)Pavel Snajdr
 
DockerCon 2016 Seattle Recap
DockerCon 2016 Seattle RecapDockerCon 2016 Seattle Recap
DockerCon 2016 Seattle RecapPhilipp Garbe
 
Getting started with docker
Getting started with dockerGetting started with docker
Getting started with dockerJEMLI Fathi
 
I Just Want to Run My Code: Waypoint, Nomad, and Other Things
I Just Want to Run My Code: Waypoint, Nomad, and Other ThingsI Just Want to Run My Code: Waypoint, Nomad, and Other Things
I Just Want to Run My Code: Waypoint, Nomad, and Other ThingsMichael Lange
 
Dockerize magento 2 24.02.2016
Dockerize magento 2   24.02.2016Dockerize magento 2   24.02.2016
Dockerize magento 2 24.02.2016Andreas Pointner
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with dockerLalatendu Mohanty
 
20160401 Gluster-roadmap
20160401 Gluster-roadmap20160401 Gluster-roadmap
20160401 Gluster-roadmapGluster.org
 
Wordcamp Bratislava 2017 - Docker! Why?
Wordcamp Bratislava 2017 - Docker! Why?Wordcamp Bratislava 2017 - Docker! Why?
Wordcamp Bratislava 2017 - Docker! Why?Adam Štipák
 
Docker meets the IDE
Docker meets the IDEDocker meets the IDE
Docker meets the IDEMario Loriedo
 
Portable PHP
Portable PHPPortable PHP
Portable PHPweltling
 
Dockerfiles & Best Practices
Dockerfiles & Best PracticesDockerfiles & Best Practices
Dockerfiles & Best PracticesAvash Mulmi
 
Introducing docker
Introducing dockerIntroducing docker
Introducing dockerDharmit Shah
 
What is Docker and why is it so hot?
What is Docker and why is it so hot?What is Docker and why is it so hot?
What is Docker and why is it so hot?Jochen Zehnder
 
PostgreSQL Setup Using Docker
PostgreSQL Setup Using DockerPostgreSQL Setup Using Docker
PostgreSQL Setup Using DockerGilt Tech Talks
 

What's hot (20)

Red Hat Container Development Kit
Red Hat Container Development KitRed Hat Container Development Kit
Red Hat Container Development Kit
 
VASCAN - Docker and Security
VASCAN - Docker and SecurityVASCAN - Docker and Security
VASCAN - Docker and Security
 
Docker 101
Docker 101Docker 101
Docker 101
 
GlusterFS Containers
GlusterFS ContainersGlusterFS Containers
GlusterFS Containers
 
How Docker didn't invent containers (Docker Meetup Brno #1)
How Docker didn't invent containers (Docker Meetup Brno #1)How Docker didn't invent containers (Docker Meetup Brno #1)
How Docker didn't invent containers (Docker Meetup Brno #1)
 
DockerCon 2016 Seattle Recap
DockerCon 2016 Seattle RecapDockerCon 2016 Seattle Recap
DockerCon 2016 Seattle Recap
 
Getting started with docker
Getting started with dockerGetting started with docker
Getting started with docker
 
DockerCon 2016 Recap
DockerCon 2016 RecapDockerCon 2016 Recap
DockerCon 2016 Recap
 
I Just Want to Run My Code: Waypoint, Nomad, and Other Things
I Just Want to Run My Code: Waypoint, Nomad, and Other ThingsI Just Want to Run My Code: Waypoint, Nomad, and Other Things
I Just Want to Run My Code: Waypoint, Nomad, and Other Things
 
Dockerize magento 2 24.02.2016
Dockerize magento 2   24.02.2016Dockerize magento 2   24.02.2016
Dockerize magento 2 24.02.2016
 
Developer workflow with docker
Developer workflow with dockerDeveloper workflow with docker
Developer workflow with docker
 
20160401 Gluster-roadmap
20160401 Gluster-roadmap20160401 Gluster-roadmap
20160401 Gluster-roadmap
 
Wordcamp Bratislava 2017 - Docker! Why?
Wordcamp Bratislava 2017 - Docker! Why?Wordcamp Bratislava 2017 - Docker! Why?
Wordcamp Bratislava 2017 - Docker! Why?
 
Docker
DockerDocker
Docker
 
Docker meets the IDE
Docker meets the IDEDocker meets the IDE
Docker meets the IDE
 
Portable PHP
Portable PHPPortable PHP
Portable PHP
 
Dockerfiles & Best Practices
Dockerfiles & Best PracticesDockerfiles & Best Practices
Dockerfiles & Best Practices
 
Introducing docker
Introducing dockerIntroducing docker
Introducing docker
 
What is Docker and why is it so hot?
What is Docker and why is it so hot?What is Docker and why is it so hot?
What is Docker and why is it so hot?
 
PostgreSQL Setup Using Docker
PostgreSQL Setup Using DockerPostgreSQL Setup Using Docker
PostgreSQL Setup Using Docker
 

Similar to Docker for Drupal development

Docker for developers
Docker for developersDocker for developers
Docker for developersDrupalDay
 
Docker with WordPress
Docker with WordPressDocker with WordPress
Docker with WordPressImran Sayed
 
Using Docker to boost your development experience with Drupal
Using Docker to boost your development experience with DrupalUsing Docker to boost your development experience with Drupal
Using Docker to boost your development experience with Drupaldockerizedrupal
 
An introduction to contianers and Docker for PHP developers
An introduction to contianers and Docker for PHP developersAn introduction to contianers and Docker for PHP developers
An introduction to contianers and Docker for PHP developersRobert McFrazier
 
Introduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersIntroduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersRobert McFrazier
 
Introduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersIntroduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersRobert McFrazier
 
Docker for developers
Docker for developersDocker for developers
Docker for developersAnvay Patil
 
Super powered Drupal development with docker
Super powered Drupal development with dockerSuper powered Drupal development with docker
Super powered Drupal development with dockerMaciej Lukianski
 
Docker for PHP Developers - ZendCon 2016
Docker for PHP Developers - ZendCon 2016Docker for PHP Developers - ZendCon 2016
Docker for PHP Developers - ZendCon 2016Chris Tankersley
 
FEI Bratislava 2017 - Docker
FEI Bratislava 2017 - DockerFEI Bratislava 2017 - Docker
FEI Bratislava 2017 - DockerAdam Štipák
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to DockerAdam Štipák
 
Docker - An Introduction
Docker - An IntroductionDocker - An Introduction
Docker - An IntroductionKnoldus Inc.
 
Introduction to Dockers.pptx
Introduction to Dockers.pptxIntroduction to Dockers.pptx
Introduction to Dockers.pptxHassanRaza40719
 
Introduction to Docker Container
Introduction to Docker ContainerIntroduction to Docker Container
Introduction to Docker ContainerSamsul Ma'arif
 
Introduction to docker and docker compose
Introduction to docker and docker composeIntroduction to docker and docker compose
Introduction to docker and docker composeLalatendu Mohanty
 
Docker Introduction - DevOps Montreal Meetup
Docker Introduction - DevOps Montreal MeetupDocker Introduction - DevOps Montreal Meetup
Docker Introduction - DevOps Montreal MeetupColin Surprenant
 
Docker up and Running For Web Developers
Docker up and Running For Web DevelopersDocker up and Running For Web Developers
Docker up and Running For Web DevelopersBADR
 

Similar to Docker for Drupal development (20)

Docker for developers
Docker for developersDocker for developers
Docker for developers
 
Docker with WordPress
Docker with WordPressDocker with WordPress
Docker with WordPress
 
Using Docker to boost your development experience with Drupal
Using Docker to boost your development experience with DrupalUsing Docker to boost your development experience with Drupal
Using Docker to boost your development experience with Drupal
 
Docker for dev
Docker for devDocker for dev
Docker for dev
 
Docker+java
Docker+javaDocker+java
Docker+java
 
An introduction to contianers and Docker for PHP developers
An introduction to contianers and Docker for PHP developersAn introduction to contianers and Docker for PHP developers
An introduction to contianers and Docker for PHP developers
 
Docker for Developers
Docker for DevelopersDocker for Developers
Docker for Developers
 
Introduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersIntroduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developers
 
Introduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developersIntroduction to Containers and Docker for PHP developers
Introduction to Containers and Docker for PHP developers
 
Docker for developers
Docker for developersDocker for developers
Docker for developers
 
Super powered Drupal development with docker
Super powered Drupal development with dockerSuper powered Drupal development with docker
Super powered Drupal development with docker
 
Docker for PHP Developers - ZendCon 2016
Docker for PHP Developers - ZendCon 2016Docker for PHP Developers - ZendCon 2016
Docker for PHP Developers - ZendCon 2016
 
FEI Bratislava 2017 - Docker
FEI Bratislava 2017 - DockerFEI Bratislava 2017 - Docker
FEI Bratislava 2017 - Docker
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Docker - An Introduction
Docker - An IntroductionDocker - An Introduction
Docker - An Introduction
 
Introduction to Dockers.pptx
Introduction to Dockers.pptxIntroduction to Dockers.pptx
Introduction to Dockers.pptx
 
Introduction to Docker Container
Introduction to Docker ContainerIntroduction to Docker Container
Introduction to Docker Container
 
Introduction to docker and docker compose
Introduction to docker and docker composeIntroduction to docker and docker compose
Introduction to docker and docker compose
 
Docker Introduction - DevOps Montreal Meetup
Docker Introduction - DevOps Montreal MeetupDocker Introduction - DevOps Montreal Meetup
Docker Introduction - DevOps Montreal Meetup
 
Docker up and Running For Web Developers
Docker up and Running For Web DevelopersDocker up and Running For Web Developers
Docker up and Running For Web Developers
 

More from William Mortada

CiviCRM Reports and Extensions - CiviCamp Birmingham 2020
CiviCRM Reports and Extensions - CiviCamp Birmingham 2020CiviCRM Reports and Extensions - CiviCamp Birmingham 2020
CiviCRM Reports and Extensions - CiviCamp Birmingham 2020William Mortada
 
Payment processors in CiviCRM
Payment processors in CiviCRMPayment processors in CiviCRM
Payment processors in CiviCRMWilliam Mortada
 
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019CiviCRM Reports and Extensions - CiviCamp London - Nov 2019
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019William Mortada
 
CiviCRM Reports and Extensions - CiviCamp Leeds 2019
CiviCRM Reports and Extensions - CiviCamp Leeds 2019CiviCRM Reports and Extensions - CiviCamp Leeds 2019
CiviCRM Reports and Extensions - CiviCamp Leeds 2019William Mortada
 
Civi Mosaico - A user story
Civi Mosaico - A user storyCivi Mosaico - A user story
Civi Mosaico - A user storyWilliam Mortada
 
CiviCRM Reports and Extensions Manchester 2018
CiviCRM Reports and Extensions Manchester 2018CiviCRM Reports and Extensions Manchester 2018
CiviCRM Reports and Extensions Manchester 2018William Mortada
 
CiviCRM Reports and Extensions London 2018
CiviCRM Reports and Extensions London 2018CiviCRM Reports and Extensions London 2018
CiviCRM Reports and Extensions London 2018William Mortada
 
CiviCRM Reports and Extensions
CiviCRM Reports and ExtensionsCiviCRM Reports and Extensions
CiviCRM Reports and ExtensionsWilliam Mortada
 
Effective social media for campaigning
Effective social media for campaigningEffective social media for campaigning
Effective social media for campaigningWilliam Mortada
 
Getting your message out with social media
Getting your message out with social mediaGetting your message out with social media
Getting your message out with social mediaWilliam Mortada
 
Effective social media to engage the public and volunteers
Effective social media to engage the public and volunteersEffective social media to engage the public and volunteers
Effective social media to engage the public and volunteersWilliam Mortada
 

More from William Mortada (11)

CiviCRM Reports and Extensions - CiviCamp Birmingham 2020
CiviCRM Reports and Extensions - CiviCamp Birmingham 2020CiviCRM Reports and Extensions - CiviCamp Birmingham 2020
CiviCRM Reports and Extensions - CiviCamp Birmingham 2020
 
Payment processors in CiviCRM
Payment processors in CiviCRMPayment processors in CiviCRM
Payment processors in CiviCRM
 
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019CiviCRM Reports and Extensions - CiviCamp London - Nov 2019
CiviCRM Reports and Extensions - CiviCamp London - Nov 2019
 
CiviCRM Reports and Extensions - CiviCamp Leeds 2019
CiviCRM Reports and Extensions - CiviCamp Leeds 2019CiviCRM Reports and Extensions - CiviCamp Leeds 2019
CiviCRM Reports and Extensions - CiviCamp Leeds 2019
 
Civi Mosaico - A user story
Civi Mosaico - A user storyCivi Mosaico - A user story
Civi Mosaico - A user story
 
CiviCRM Reports and Extensions Manchester 2018
CiviCRM Reports and Extensions Manchester 2018CiviCRM Reports and Extensions Manchester 2018
CiviCRM Reports and Extensions Manchester 2018
 
CiviCRM Reports and Extensions London 2018
CiviCRM Reports and Extensions London 2018CiviCRM Reports and Extensions London 2018
CiviCRM Reports and Extensions London 2018
 
CiviCRM Reports and Extensions
CiviCRM Reports and ExtensionsCiviCRM Reports and Extensions
CiviCRM Reports and Extensions
 
Effective social media for campaigning
Effective social media for campaigningEffective social media for campaigning
Effective social media for campaigning
 
Getting your message out with social media
Getting your message out with social mediaGetting your message out with social media
Getting your message out with social media
 
Effective social media to engage the public and volunteers
Effective social media to engage the public and volunteersEffective social media to engage the public and volunteers
Effective social media to engage the public and volunteers
 

Recently uploaded

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 

Recently uploaded (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

Docker for Drupal development

  • 1. Docker for Drupal development Drupal North East - 26 April 2017
  • 2. About me William Mortada Digital Communications Consultant Community IT Academy @wmortada
  • 4. 21 April 2016 Ubuntu 16.04 released Ships with PHP 7 Some of my older websites stop working...
  • 5. Development tools What do you have installed on your development machine? ● drush ● drupal console ● ruby ● node.js ● npm ● sass ● less ● ...
  • 6. Docker to the rescue Infrastructure as code Customisable setup for each project Consistent development environment Easy to share with other developers Low resource use Fast to start
  • 8. Docker “Docker is an open-source project that automates the deployment of applications inside software containers. Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server.” - Wikipedia
  • 9. Everything in containers ● Web server: Apache / Nginx ● Development language: PHP ● Database: MySQL / MariaDB ● Database management: phpMyAdmin ● Mail client: mailhog ● Caching: redis / memcached / varnish ● Search engine: solr ● Stylesheet compilation: sass ● ...
  • 10. Docker compose Manage multiple containers Define links between services Manage storage
  • 12. Installation ● Linux ○ add Docker repository ○ manually install Docker Compose ● Mac ○ Docker for Mac ● Windows ○ Docker for Windows
  • 14. Basic PHP container version: '2' services: php: image: php:5.6-apache ports: - 8000:80 volumes: - ./htdocs/:/var/www/html $ docker-compose up
  • 15. Drupal development environment version: '2' services: php: build: ./php/ ports: - 8000:80 links: - db volumes: - ./htdocs/:/var/www db: image: mysql:5.7 volumes: - ./data:/var/lib/mysql $ docker-compose up -d $ . scripts/functions.sh $ drush status
  • 16. Sass compilation docker run -i --rm -v $FileParentDir$:$FileParentDir$ -w $FileParentDir$ jbergknoff/sass -t compressed $FilePath$ $FileParentDir$/css/$FileNameWithoutExtension$.css
  • 18. Further reading osteel: How to use Docker for local web development jungle & pepe-roni: Docker based development environment wodby: Docker for Drupal