DOCKER
COMPOSE
An introduction
Matthias Noback
@matthiasnoback
info@matthiasnoback.nl
DOCKER ENGINE
Low-level docker commands
docker network create website || true
docker build -t my_webserver -f docker/webserver/Dockerfile ./
docker pull redis:3.2
docker run -d --name redis redis:3.2
docker run 
-p 80:80 
-v `pwd`/web:/var/www/html 
-d 
--link redis 
--name webserver 
my_webserver
DOCKER COMPOSE
Configuring and running multiple containers
docker-compose CLI tool
Yaml configuration file(s)
CONTAINERS ~= SERVICES
CLI arguments for docker end up in docker-compose.yml
version: '3'
services:
name_of_service:
image: ...
volumes:
- ...
BUILDING
IMAGES
Dockerfile and build context
BUILD CONTEXT
Short syntax
version: '3'
services:
name_of_service:
build: directory/
BUILD CONTEXT
Long syntax
version: '3'
services:
name_of_service:
build:
context: ./
dockerfile: directory/Dockerfile
USING
READY-MADE
IMAGES
SUPPLY AN IMAGE (AND TAG)
Instead of a build configuration
version: '3'
services:
name_of_service:
image: php:7.1-apache
DEPLOYMENT
With Compose
some-other-machine
DOCKER
A daemon and a client
Docker
daemon
client
container container container
ASSIGNMENTS/
ALL.MD
Playing with docker-compose and docker-compose.yml files
https://github.com/matthiasnoback/docker-compose-workshop/
BETTER OPTIONS?
Docker Swarm
Multiple nodes
Fine-grained deploy strategies

More Related Content

PDF
Docker Compose and Panamax - ContainerDays Boston - June 2015
PDF
Docker Compose Explained
PPTX
Docker in 30 minutes
PDF
JDO 2019: Tips and Tricks from Docker Captain - Łukasz Lach
PDF
Be a happier developer with Docker: Tricks of the trade
TXT
Powershell direct
PDF
Painless Perl Ports with cpan2port
PPTX
Docker Workshop
Docker Compose and Panamax - ContainerDays Boston - June 2015
Docker Compose Explained
Docker in 30 minutes
JDO 2019: Tips and Tricks from Docker Captain - Łukasz Lach
Be a happier developer with Docker: Tricks of the trade
Powershell direct
Painless Perl Ports with cpan2port
Docker Workshop

What's hot (20)

PDF
Getting instantly up and running with Docker and Symfony
PPTX
Infrastructure as code with Docker and fig
PPTX
Devopstore
PDF
Chef introduction
PPTX
AWS 기반 Docker, Kubernetes
PDF
Pemaketan blankon-ii
PPTX
Docker for dev
ODP
Coocoo for Cocoapods
PDF
Docker orchestration using core os and ansible - Ansible IL 2015
PPT
Web Server Clustering - OSSCAMP
PPTX
Managing Drupal on Windows with Drush
PPTX
Couch to OpenStack: Glance - July, 23, 2013
PDF
Automatic docker service announcement with registrator and confd
PDF
Scaling Next-Generation Internet TV on AWS With Docker, Packer, and Chef
PPTX
Dockerizing a Symfony2 application
PDF
Dev-Jam 2019 - Container & OpenNMS
PPTX
Dockerize Me: Distributed PHP applications with Symfony, Docker, Consul and A...
PPTX
Docker - A Ruby Introduction
ODP
How we setup Rsync-powered Incremental Backups
PDF
Getting instantly up and running with Docker and Symfony
Infrastructure as code with Docker and fig
Devopstore
Chef introduction
AWS 기반 Docker, Kubernetes
Pemaketan blankon-ii
Docker for dev
Coocoo for Cocoapods
Docker orchestration using core os and ansible - Ansible IL 2015
Web Server Clustering - OSSCAMP
Managing Drupal on Windows with Drush
Couch to OpenStack: Glance - July, 23, 2013
Automatic docker service announcement with registrator and confd
Scaling Next-Generation Internet TV on AWS With Docker, Packer, and Chef
Dockerizing a Symfony2 application
Dev-Jam 2019 - Container & OpenNMS
Dockerize Me: Distributed PHP applications with Symfony, Docker, Consul and A...
Docker - A Ruby Introduction
How we setup Rsync-powered Incremental Backups

Similar to Docker compose workshop (20)

PDF
Drupal Development with Docker
PPTX
Docker for developers z java
PPTX
Docker for Web Developers: A Sneak Peek
PPTX
Nats meetup oct 2016 docker 112
PDF
Docker: A New Way to Turbocharging Your Apps Development
POTX
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
PDF
Containerizing Web Application with Docker
PDF
How to dockerize rails application compose and rails tutorial
PDF
Docker Essentials Workshop— Innovation Labs July 2020
PPTX
Introduction To Docker
PPTX
Architecting .NET Applications for Docker and Container Based Deployments
PDF
Introduction to Docker Compose
PPTX
Running Docker in Development & Production (DevSum 2015)
PPTX
Academy PRO: Docker. Lecture 3
PDF
Docker, Kubernetes, and Google Cloud
PDF
Intersog Hack_n_Tell. Docker. First steps.
PPTX
ABCing docker with environments - workshop
PPTX
Primi passi con Docker - ItalianCoders - 12-01-2021
PDF
Docker Distributed application bundle & Stack - Overview
Drupal Development with Docker
Docker for developers z java
Docker for Web Developers: A Sneak Peek
Nats meetup oct 2016 docker 112
Docker: A New Way to Turbocharging Your Apps Development
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
Containerizing Web Application with Docker
How to dockerize rails application compose and rails tutorial
Docker Essentials Workshop— Innovation Labs July 2020
Introduction To Docker
Architecting .NET Applications for Docker and Container Based Deployments
Introduction to Docker Compose
Running Docker in Development & Production (DevSum 2015)
Academy PRO: Docker. Lecture 3
Docker, Kubernetes, and Google Cloud
Intersog Hack_n_Tell. Docker. First steps.
ABCing docker with environments - workshop
Primi passi con Docker - ItalianCoders - 12-01-2021
Docker Distributed application bundle & Stack - Overview

More from Matthias Noback (20)

PDF
Rector fireside chat - PHPMiNDS meetup
PDF
Service abstractions - Part 1: Queries
PDF
Hexagonal Symfony - SymfonyCon Amsterdam 2019
PDF
Advanced web application architecture - PHP Barcelona
PDF
A testing strategy for hexagonal applications
PDF
Advanced web application architecture - Talk
PDF
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
PDF
Layers, ports and adapters
PDF
Beyond design principles and patterns (muCon 2019 edition)
PDF
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
PDF
Advanced web application architecture Way2Web
PDF
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
PDF
Beyond Design Principles and Patterns
PDF
Building Autonomous Services
PDF
Advanced Application Architecture Symfony Live Berlin 2018
PDF
Designing for Autonomy
PDF
Docker workshop
PDF
Docker swarm workshop
PDF
Building autonomous services
PDF
Designing for autonomy
Rector fireside chat - PHPMiNDS meetup
Service abstractions - Part 1: Queries
Hexagonal Symfony - SymfonyCon Amsterdam 2019
Advanced web application architecture - PHP Barcelona
A testing strategy for hexagonal applications
Advanced web application architecture - Talk
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
Layers, ports and adapters
Beyond design principles and patterns (muCon 2019 edition)
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Advanced web application architecture Way2Web
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Beyond Design Principles and Patterns
Building Autonomous Services
Advanced Application Architecture Symfony Live Berlin 2018
Designing for Autonomy
Docker workshop
Docker swarm workshop
Building autonomous services
Designing for autonomy

Recently uploaded (20)

PDF
Domain-specific knowledge and context in large language models: challenges, c...
PDF
【AI論文解説】高速・高品質な生成を実現するFlow Map Models(Part 1~3)
PPTX
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
PDF
Altius execution marketplace concept.pdf
PDF
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
PDF
ELLIE29.pdfWETWETAWTAWETAETAETERTRTERTER
PDF
Technical Debt in the AI Coding Era - By Antonio Bianco
PDF
TrustArc Webinar - Data Minimization in Practice_ Reducing Risk, Enhancing Co...
PDF
substrate PowerPoint Presentation basic one
PDF
Ebook - The Future of AI A Comprehensive Guide.pdf
PDF
Decision Optimization - From Theory to Practice
PDF
Fitaura: AI & Machine Learning Powered Fitness Tracker
PDF
Optimizing bioinformatics applications: a novel approach with human protein d...
PDF
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
PDF
1_Keynote_Breaking Barriers_한계를 넘어서_Charith Mendis.pdf
PPTX
Presentation - Principles of Instructional Design.pptx
PPTX
CRM(Customer Relationship Managmnet) Presentation
PPTX
Report in SIP_Distance_Learning_Technology_Impact.pptx
PDF
NewMind AI Journal Monthly Chronicles - August 2025
PDF
Human Computer Interaction Miterm Lesson
Domain-specific knowledge and context in large language models: challenges, c...
【AI論文解説】高速・高品質な生成を実現するFlow Map Models(Part 1~3)
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
Altius execution marketplace concept.pdf
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
ELLIE29.pdfWETWETAWTAWETAETAETERTRTERTER
Technical Debt in the AI Coding Era - By Antonio Bianco
TrustArc Webinar - Data Minimization in Practice_ Reducing Risk, Enhancing Co...
substrate PowerPoint Presentation basic one
Ebook - The Future of AI A Comprehensive Guide.pdf
Decision Optimization - From Theory to Practice
Fitaura: AI & Machine Learning Powered Fitness Tracker
Optimizing bioinformatics applications: a novel approach with human protein d...
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
1_Keynote_Breaking Barriers_한계를 넘어서_Charith Mendis.pdf
Presentation - Principles of Instructional Design.pptx
CRM(Customer Relationship Managmnet) Presentation
Report in SIP_Distance_Learning_Technology_Impact.pptx
NewMind AI Journal Monthly Chronicles - August 2025
Human Computer Interaction Miterm Lesson

Docker compose workshop