SlideShare a Scribd company logo
ENTERPRISE NODE
DEPLOYING WITH DOCKER
ABOUT ME
Tech Lead @ MLS
Medium: @kurtiskemple
Twitter: @kurtiskemple
GitHub: @kkemple
REPO FOR THIS WEBINAR
KKEMPLE/AWESOME-ENTERPRISE-WEB-SERVICE
WHY SHOULD I USE DOCKER?
BENEFITS
• Atomic Releases - Entire Environment is Deployed
• Easier Promotion of Environments
• Easier CI/CD Processes
• Enforces Stateless Application Architectures
QUICK OVERVIEW
DOCKER ARCHITECTURE
DOCKER IMAGE ARCHITECTURE
CONTINUOUS INTEGRATION AND
DEPLOYMENTS
BUILDING CONTAINERS
• Docker reads a project’s Dockerfile
• Dockerfiles contain the “blueprints” for your environment
• Containers are image instances
• Images are what we pull/push from Docker Hub or (private registry)
PROMOTING ENVIRONMENTS
• Containers are stateless, so easy to deploy anywhere
• Config is pulled from ENV vars or external key/value stores
• Switching environments is as simple as switching configuration
• We can tag containers for environments for deployment:
kkemple/awesome-enterprise-web-service:production
kkemple/awesome-enterprise-web-service:staging
kkemple/awesome-enterprise-web-service:development
kkemple/awesome-enterprise-web-service:local
STORING DOCKER CONTAINERS
DOCKER HUB
PRIVATE DOCKER REGISTRY
QUAY.IO
CONTAINER MANAGEMENT
SERVICES
DOCKER COMPOSE
DOCKER CLOUD
RANCHER
KUBERNETES
LIVE DEMO
Q&A
• Enterprise Node.js - Code Quality
https://www.crowdcast.io/e/enterprise-node-1
• Enterprise Node.js - Code Discovery
https://www.crowdcast.io/e/enterprise-node-2
• Enterprise Node.js - Securing Your Environment
https://www.crowdcast.io/e/enterprise-node-3
• Enterprise Node.js - Deploying with Docker
https://www.crowdcast.io/e/enterprise-node-4
23
ENTERPRISE NODE.JS
JavaScript is replacing Java, Ruby, and .NET as the technology of choice for
companies that want to build enterprise software faster, and with fewer
resources. Learn about enterprise JavaScript applications at every level of the
stack. As well as how to secure, integrate, test, store, monitor, and deploy
them.
O’REILLY SOFTWARE ARCHITECTURE
CONFERENCE
Architecting For Enterprise in Node.js

More Related Content

What's hot (20)

PPTX
vodQA(Pune) 2018 - Visual testing of web apps in headless environment manis...
vodQA
 
PPTX
Docker introduction (1)
Gourav Varma
 
PPTX
vodQA(Pune) 2018 - Docker in Testing
vodQA
 
PDF
Continuous Delivery to Kubernetes with Jenkins and Helm
David Currie
 
PDF
Nodejs OC Docker and Node
Jeff Horn
 
PPTX
Let's talk Windows Containers on Windows Server 2019
Stefan Scherer
 
PDF
Containerization using docker
WingChan46
 
PPTX
Reduce DevOps Friction with Docker & Jenkins by Andy Pemberton, Cloudbees
Docker, Inc.
 
PPTX
Building Microservices with Jakarta EE and MicroProfile - EclipseCon 2019
Edwin Derks
 
PDF
Containers docker-docker hub-azureacr-azure aci
Rajesh Kolla
 
PPTX
What is Docker?
Shubhrank Rastogi
 
PPTX
The container revolution, and what it means to operators bay lisa - july 2016
Robert Starmer
 
PDF
DCSF19 Containers for Beginners
Docker, Inc.
 
PDF
DockerCon EU 2015: Continuous Integration with Jenkins, Docker and Compose
Docker, Inc.
 
PDF
Azure Meetup Stuttgart - Multi-arch Docker images
Stefan Scherer
 
PDF
Docker 101 for Developer
Sofian Hadiwijaya
 
PDF
Make your own Open Source transition with CocoaPods
itnig
 
PDF
Kubernetes made easy with Docker Enterprise - Tech deep dive on Docker/Kubern...
Kangaroot
 
PPTX
Docker on Windows: From 101 to Modernizing .NET Apps
Elton Stoneman
 
PDF
Connect + Docker + AWS = Bitbucket Pipelines
Atlassian
 
vodQA(Pune) 2018 - Visual testing of web apps in headless environment manis...
vodQA
 
Docker introduction (1)
Gourav Varma
 
vodQA(Pune) 2018 - Docker in Testing
vodQA
 
Continuous Delivery to Kubernetes with Jenkins and Helm
David Currie
 
Nodejs OC Docker and Node
Jeff Horn
 
Let's talk Windows Containers on Windows Server 2019
Stefan Scherer
 
Containerization using docker
WingChan46
 
Reduce DevOps Friction with Docker & Jenkins by Andy Pemberton, Cloudbees
Docker, Inc.
 
Building Microservices with Jakarta EE and MicroProfile - EclipseCon 2019
Edwin Derks
 
Containers docker-docker hub-azureacr-azure aci
Rajesh Kolla
 
What is Docker?
Shubhrank Rastogi
 
The container revolution, and what it means to operators bay lisa - july 2016
Robert Starmer
 
DCSF19 Containers for Beginners
Docker, Inc.
 
DockerCon EU 2015: Continuous Integration with Jenkins, Docker and Compose
Docker, Inc.
 
Azure Meetup Stuttgart - Multi-arch Docker images
Stefan Scherer
 
Docker 101 for Developer
Sofian Hadiwijaya
 
Make your own Open Source transition with CocoaPods
itnig
 
Kubernetes made easy with Docker Enterprise - Tech deep dive on Docker/Kubern...
Kangaroot
 
Docker on Windows: From 101 to Modernizing .NET Apps
Elton Stoneman
 
Connect + Docker + AWS = Bitbucket Pipelines
Atlassian
 

Viewers also liked (10)

PDF
K8 Noida
k8noida
 
PDF
K8 & Lord Krishna Commercial Project
k8noida
 
PPTX
Healthcare and Diamonds Brighten Prabodh Mehta
Prabodh Mehta
 
DOCX
Gl test without answers
pandeyamit631
 
PDF
K8 Developers Noida
k8noida
 
PDF
K8 Sector 129 noida 9555526604
k8noida
 
PPTX
Diamonds of prabodh mehta allure the globe!
Prabodh Mehta
 
PDF
K8 Sector 129, Noida
k8noida
 
PPTX
Enterprise Node - Securing Your Environment
Kurtis Kemple
 
DOCX
Ii
Luis Schunk
 
K8 Noida
k8noida
 
K8 & Lord Krishna Commercial Project
k8noida
 
Healthcare and Diamonds Brighten Prabodh Mehta
Prabodh Mehta
 
Gl test without answers
pandeyamit631
 
K8 Developers Noida
k8noida
 
K8 Sector 129 noida 9555526604
k8noida
 
Diamonds of prabodh mehta allure the globe!
Prabodh Mehta
 
K8 Sector 129, Noida
k8noida
 
Enterprise Node - Securing Your Environment
Kurtis Kemple
 
Ad

Similar to Enterprise Node - Deploying with Docker (20)

PDF
Experts Live Europe 2017 - Why you should care about Docker - an introduction
Marc Müller
 
PDF
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
Edureka!
 
PDF
A curtain-raiser to the container world Docker & Kubernetes
zekeLabs Technologies
 
PPTX
Docker EE 2.0 Choice, Security & Agility
Ashnikbiz
 
PPTX
Why to docker
Karthik Gaekwad
 
PPTX
Docker - A curtain raiser to the Container world
zekeLabs Technologies
 
PDF
Containers and Microservices for Realists
Oracle Developers
 
PDF
Containers and microservices for realists
Karthik Gaekwad
 
PPTX
Power of Azure Devops
Azure Riyadh User Group
 
PDF
DockerPenang Meetup#1
Sujay Pillai
 
PPTX
Docker 101 describing basic docker usage
ZiyanMaraikar1
 
PDF
[@NaukriEngineering] Docker 101
Naukri.com
 
PPTX
Using Docker EE in a CI/CD Workflow
Ashnikbiz
 
PPTX
Tips and best practices for Docker
Calidad Infotech
 
PDF
Introduction to Docker | Docker and Kubernetes Training
Shailendra Chauhan
 
PDF
Introduction Docker and Kubernetes | Docker & Kubernetes Tutorial | Dot Net T...
Dot Net Tricks
 
PDF
DevOps Fusion 2019: Docker - Why the future takes place in containers
Marc Müller
 
PPTX
DockerCon 15 Keynote - Day 2
Docker, Inc.
 
PPTX
Docker-Fundamentals-for-devops-cloud-v1.pptx
sriiraman1985
 
PDF
Afrimadoni the power of docker
PHP Indonesia
 
Experts Live Europe 2017 - Why you should care about Docker - an introduction
Marc Müller
 
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
Edureka!
 
A curtain-raiser to the container world Docker & Kubernetes
zekeLabs Technologies
 
Docker EE 2.0 Choice, Security & Agility
Ashnikbiz
 
Why to docker
Karthik Gaekwad
 
Docker - A curtain raiser to the Container world
zekeLabs Technologies
 
Containers and Microservices for Realists
Oracle Developers
 
Containers and microservices for realists
Karthik Gaekwad
 
Power of Azure Devops
Azure Riyadh User Group
 
DockerPenang Meetup#1
Sujay Pillai
 
Docker 101 describing basic docker usage
ZiyanMaraikar1
 
[@NaukriEngineering] Docker 101
Naukri.com
 
Using Docker EE in a CI/CD Workflow
Ashnikbiz
 
Tips and best practices for Docker
Calidad Infotech
 
Introduction to Docker | Docker and Kubernetes Training
Shailendra Chauhan
 
Introduction Docker and Kubernetes | Docker & Kubernetes Tutorial | Dot Net T...
Dot Net Tricks
 
DevOps Fusion 2019: Docker - Why the future takes place in containers
Marc Müller
 
DockerCon 15 Keynote - Day 2
Docker, Inc.
 
Docker-Fundamentals-for-devops-cloud-v1.pptx
sriiraman1985
 
Afrimadoni the power of docker
PHP Indonesia
 
Ad

Recently uploaded (20)

PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Python basic programing language for automation
DanialHabibi2
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 
PDF
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Python basic programing language for automation
DanialHabibi2
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
July Patch Tuesday
Ivanti
 
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 

Enterprise Node - Deploying with Docker