SlideShare a Scribd company logo
Docker & JVM 
A Perfect Match
Matthias Grüter // @mattgruter 
Jfokus 2015
Image Credit: Tim Kirman
Image Credit: Tim Kirman
Your Toastmaster
Matthias Grüter
Docker & JVM: A Perfect Match
Containers
Credit: containersfirst.com.au
VM 
 
Container 
 
Shipping Containers
Credit: danielpivnick
Build, Ship and Run 
Any App, Anywhere
Let's create some
containers!
Container Networking
Ports to the outside world
docker run ­p 9000:8080 ...
  Format: [hostPort]:[containerPort]
Container Linking
1. Database container "redis1"
docker run ­­name redis1 redis
2. Application container "myapp" (wants DB backend)
docker run ­­link redis1:db myapp
  Format: ­­link [containerName]:[alias]
Docker Images
Container Blueprints
Source: homeinabox.blogspot.se
Layered Filesystems
Sharing Images
Creating Images
Example: Jenkins
FROM debian:jessie
# install java
RUN apt­get update && apt­get install ­y openjdk­7­jre
# install jenkins
ADD http://mirrors.jenkins­ci.org/war/1.597/jenkins.war /
ENV JENKINS_HOME /jenkins
WORKDIR /jenkins
EXPOSE 8080
CMD ["java", "­jar", "/jenkins.war"]
Example: Jenkins
Build:
docker build ­­tag jenkins .
Run:
docker run ­p 8080:8080 jenkins
Data Volumes
Expose:
docker run ­v /data ­­name db redis
Access:
docker run ­­volumes­from=db rsync ­r /data/ remote:/backup
Credit: Tony Cole
A Perfect Match
Image credit: snorgtees.com
Docker and the JVM
 
Encapsulation (app + libs) 
Memory management 
Portability
 
Encapsulation (runtime) 
Isolation & Containment 
Portability
Docker and the JVM
 
Encapsulation 
Sandboxing 
Portability
Ecosystem
Docker API
Build system
Build/CI servers
Build repositories
...
Wedding Gift
Qubit‐Coins
The Grand Scheme
Webapp
Gradle
plugins {
  id 'application'
}
mainClassName = 'se.qubit.webapp.Main'
group = 'mattgruter'
repositories { jcenter() }
dependencies { ... }
Webapp
Gradle & Docker
plugins {
  id 'application'
  id 'se.transmode.docker' version '1.3'
}
mainClassName = 'se.qubit.webapp.Main'
group = 'mattgruter'
repositories { jcenter() }
dependencies { ... }
distDocker.dockerfile {
  EXPOSE 8080
}
Build
gradle distDocker
:‐)
Deploy
Wallet (Redis)
docker run ­d ­­name db redis
Miner
docker run ­d ­­link db:db mattgruter/qubit­miner
Webapp
docker run ­­link db:db ­p 8080:8080 mattgruter/qubit­webapp
Faster!
docker run ­d ­­link db:db mattgruter/qubit­miner
docker run ­d ­­link db:db mattgruter/qubit­miner
docker run ­d ­­link db:db mattgruter/qubit­miner
...
Image credit: Deep Impact
Your container is 
NOT a VM
Stop treating it like one!
Corollary #1
Say no to sshd
use volumes, volumes, volumes
... and docker exec
Corollary #2
There can be only 
one PID
Credit: imaginarywars.wordpress.com
Docker is a polyglot
tool!
So sorry, JVM!
Docker Hub 
Automated Builds
Be Specific
Images are cheap, therefore ...
... build many small specific images.
Size Matters
Use small baseimages
Corollary
(e.g. apt‐get clean, multi‐line run)
Use the cache, Luke!
Move ADD & COPY to end of Dockerfile 
(they invalidate the cache)
What does the future hold?
Credit: www.clipartbest.com/8balllogo
Image Credit: Tim Kirman
Credit: Solomon Hykes
Docker & JVM: A Perfect Match

More Related Content

PDF
Docker 101 2015-05-28
PDF
Docker 101 - Intro to Docker
PDF
Docker 102 - Immutable Infrastructure
PDF
Intro To Docker
PDF
docker installation and basics
PDF
DCA. certificate slide Session 1
PDF
Docker and the Linux Kernel
PDF
Introduction to docker
Docker 101 2015-05-28
Docker 101 - Intro to Docker
Docker 102 - Immutable Infrastructure
Intro To Docker
docker installation and basics
DCA. certificate slide Session 1
Docker and the Linux Kernel
Introduction to docker

What's hot (20)

PPTX
Docker intro
PDF
Docker Introduction
PDF
Dockerizing your applications - Docker workshop @Twitter
PDF
dockerizing web application
PPTX
Docker
PPTX
Architecting .NET Applications for Docker and Container Based Deployments
PDF
Introduction to docker
PDF
Docker Overview
PDF
Docker by Example - Basics
PPTX
Introduction to Docker - What is it and how is it compared to VM's
PDF
Introduction to docker
PDF
Shipping Applications to Production in Containers with Docker
PDF
Intro to containerization
PPT
Docker introduction
PDF
Docker 101 Workshop slides (JavaOne 2017)
PPT
Amazon Web Services and Docker
PDF
Docker with openstack
PPTX
What is Docker
PDF
Docker n co
PDF
Introduction to docker security
Docker intro
Docker Introduction
Dockerizing your applications - Docker workshop @Twitter
dockerizing web application
Docker
Architecting .NET Applications for Docker and Container Based Deployments
Introduction to docker
Docker Overview
Docker by Example - Basics
Introduction to Docker - What is it and how is it compared to VM's
Introduction to docker
Shipping Applications to Production in Containers with Docker
Intro to containerization
Docker introduction
Docker 101 Workshop slides (JavaOne 2017)
Amazon Web Services and Docker
Docker with openstack
What is Docker
Docker n co
Introduction to docker security
Ad

Viewers also liked (7)

PDF
Cassandra is great but how do I test my application?
PDF
Docker and jvm. A good idea?
PDF
Linux cgroups and namespaces
PDF
ビッグデータを活用するための分析プラットフォーム 〜データ集計した先に求められる分析技術〜
PDF
Full system roll-back and systemd in SUSE Linux Enterprise 12
PPTX
データドリブン企業におけるHadoop基盤とETL -niconicoでの実践例-
PDF
DeNAの分析を支える分析基盤
Cassandra is great but how do I test my application?
Docker and jvm. A good idea?
Linux cgroups and namespaces
ビッグデータを活用するための分析プラットフォーム 〜データ集計した先に求められる分析技術〜
Full system roll-back and systemd in SUSE Linux Enterprise 12
データドリブン企業におけるHadoop基盤とETL -niconicoでの実践例-
DeNAの分析を支える分析基盤
Ad

Similar to Docker & JVM: A Perfect Match (20)

PPTX
Develop with docker 2014 aug
PDF
Developing and deploying applications with Spring Boot and Docker (@oakjug)
PDF
PuppetConf 2017: What’s in the Box?!- Leveraging Puppet Enterprise & Docker- ...
PPTX
Docker for developers z java
POTX
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
PDF
ContainerDayVietnam2016: Dockerize a small business
PPSX
Docker and containers - Presentation Slides by Priyadarshini Anand
PPTX
PDF
PDF
Cicd.pdf
PPTX
Setup docker on existing application
PDF
Up and running with docker
PPTX
[Codelab 2017] Docker 기초 및 활용 방안
PDF
Deployment Automation with Docker
PDF
時代在變 Docker 要會:台北 Docker 一日入門篇
PDF
手把手帶你學 Docker 入門篇
PDF
Docker workshop 0507 Taichung
PDF
Docker Essentials Workshop— Innovation Labs July 2020
PDF
Faster and Easier Software Development using Docker Platform
PDF
Dockerize Your Project - GDGBogor
Develop with docker 2014 aug
Developing and deploying applications with Spring Boot and Docker (@oakjug)
PuppetConf 2017: What’s in the Box?!- Leveraging Puppet Enterprise & Docker- ...
Docker for developers z java
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
ContainerDayVietnam2016: Dockerize a small business
Docker and containers - Presentation Slides by Priyadarshini Anand
Cicd.pdf
Setup docker on existing application
Up and running with docker
[Codelab 2017] Docker 기초 및 활용 방안
Deployment Automation with Docker
時代在變 Docker 要會:台北 Docker 一日入門篇
手把手帶你學 Docker 入門篇
Docker workshop 0507 Taichung
Docker Essentials Workshop— Innovation Labs July 2020
Faster and Easier Software Development using Docker Platform
Dockerize Your Project - GDGBogor

Recently uploaded (20)

PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
medical staffing services at VALiNTRY
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
System and Network Administration Chapter 2
PDF
Digital Strategies for Manufacturing Companies
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
L1 - Introduction to python Backend.pptx
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Design an Analysis of Algorithms I-SECS-1021-03
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PTS Company Brochure 2025 (1).pdf.......
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
CHAPTER 2 - PM Management and IT Context
How to Choose the Right IT Partner for Your Business in Malaysia
medical staffing services at VALiNTRY
Design an Analysis of Algorithms II-SECS-1021-03
Operating system designcfffgfgggggggvggggggggg
Which alternative to Crystal Reports is best for small or large businesses.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
System and Network Administration Chapter 2
Digital Strategies for Manufacturing Companies
How Creative Agencies Leverage Project Management Software.pdf
Odoo Companies in India – Driving Business Transformation.pdf
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
L1 - Introduction to python Backend.pptx
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...

Docker & JVM: A Perfect Match