ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
PLAY?ON?DOCKER
Daniel Pfei?er - @pfei?er_d_
IT'S?EASY?BECAUSE
EVERYONE?DOES?IT
CLASSIC?DOCKERFILE
BUILD?THE?IMAGE
FROM anapsix/alpine-java:8u141b15_jdk
COPY ./target/scala-2.12/assembly.jar /app/assembly.jar
EXPOSE 9000
ENTRYPOINT ["java", "-jar", "/app/assembly.jar"]
docker build -t com.github.dpfeiffer/play-docker-showcase .
DOCKERFILE?WITH?SBT
BUILD?THE?IMAGE
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")
dockerfile in docker := {
new Dockerfile {
from("anapsix/alpine-java:8u141b15_jdk")
copy(assembly.value, "/app/assembly.jar")
expose(9000)
entryPoint("java", "-jar", "/app/assembly.jar")
}
}
sbt docker
I?PREFER?A?START?SCRIPT
#!/usr/bin/env bash
exec java -jar /app/assembly.jar
dockerfile in docker := {
new Dockerfile {
from("anapsix/alpine-java:8u141b15_jdk")
copy(assembly.value, "/app/assembly.jar")
copy(file("./start.sh"), "/app/start.sh")
run("chmod", "+x", "/app/start.sh")
expose(9000)
cmd("/app/start.sh")
}
}
HANDS?ON
CODE
See my Github Repository
RUNNING?THE?APPLICATION
Build the Docker image with
Run the Docker image with
sbt docker
docker run -m 128M -it --rm -p 9000:9000 -name showcase 
-e PLAY_HTTP_SECRET_KEY=changed 
com.github.dpfeiffer/play-docker-showcase
USEFUL?COMMANDS
View the Docker container stats
Enter the container bash
Get a memory overview of the JVM inside the
container
docker stats showcase
docker exec -it showcase /bin/bash
jcmd 1 VM.native_memory summary
WITH?©\XMX?YOU?SET?THE?MAX
MEMORY...
FINAL?THOUGHTS
existing VM ?ags are not enough
non-heap at least is "predictable"
"micro" services on the JVM are not that micro
use small base images to save tra?c
non heap grows over time, keep some space
LINKS
https://github.com/marcuslonnberg/sbt-docker
https://github.com/sbt/sbt-native-packager
http://trustmeiamadeveloper.com/2016/03/18/where-
is-my-memory-java/
https://www.playframework.com/documentation/2.6.x/
the-sbt-assembly-plugin
http://www.pointsoftware.ch/wp-
content/uploads/2012/10/JUtH_20121024_RuntimeData
Ad

Recommended

Provisioning & Deploying with Docker
Provisioning & Deploying with Docker
Erica Windisch
?
Deploying an application with Chef and Docker
Deploying an application with Chef and Docker
Daniel Ku
?
Breaking Up With Your Data Center Presentation
Breaking Up With Your Data Center Presentation
Telescope_Inc
?
Building scala with bazel
Building scala with bazel
Natan Silnitsky
?
Containerize spring boot application with docker
Containerize spring boot application with docker
Sunil kumar Mohanty
?
Concourse CI Meetup Demo
Concourse CI Meetup Demo
Toshiaki Maki
?
Introduction to Concourse CI #œi¹ÈJava
Introduction to Concourse CI #œi¹ÈJava
Toshiaki Maki
?
Using Multi-stage Docker, Go, Java,& Bazel to DESTROY Long Build Times
Using Multi-stage Docker, Go, Java,& Bazel to DESTROY Long Build Times
DevOps.com
?
What's New in v2 - AnsibleFest London 2015
What's New in v2 - AnsibleFest London 2015
jimi-c
?
Auto-scaled Concourse CI on AWS w/o BOSH
Auto-scaled Concourse CI on AWS w/o BOSH
ÓÓ½é ¾ÅŒù
?
Vagrant introduction for Developers
Vagrant introduction for Developers
Antons Kranga
?
London Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.js
Bethany Nicolle Griggs
?
Develop - Project Scaffolding
Develop - Project Scaffolding
Kevin Cao
?
Workshop - Golang language
Workshop - Golang language
Vincent Composieux
?
Zero to Continuous Delivery on Google Cloud
Zero to Continuous Delivery on Google Cloud
James Heggs
?
Pluralsight Webinar: Simplify Your Project Builds with Docker
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman
?
Node Summit 2018: Cloud Native Node.js
Node Summit 2018: Cloud Native Node.js
Chris Bailey
?
There is no snapshot
There is no snapshot
Ole Christian Langfj?ran
?
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Jeff Geerling
?
Ci For The Web 2.0 Guy Or Gal
Ci For The Web 2.0 Guy Or Gal
Chad Woolley
?
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Quentin Plessis
?
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
Akihiro Suda
?
Automating your workflow with Gulp.js
Automating your workflow with Gulp.js
Bo-Yi Wu
?
TechUG - Kubernetes 101 - May 2020
TechUG - Kubernetes 101 - May 2020
Elton Stoneman
?
Drupal VM for Drupal 8 Dev - MidCamp 2017
Drupal VM for Drupal 8 Dev - MidCamp 2017
Jeff Geerling
?
Using Docker with Puppet - PuppetConf 2014
Using Docker with Puppet - PuppetConf 2014
Puppet
?
ConcourseCi overview
ConcourseCi overview
Gwenn Etourneau
?
Docker in Action
Docker in Action
Alper Kanat
?
Event Sourcing without any Framework
Event Sourcing without any Framework
Daniel Pfeiffer
?
cats.effect.IO - Scala Vienna Meetup February 2019
cats.effect.IO - Scala Vienna Meetup February 2019
Daniel Pfeiffer
?

More Related Content

What's hot (20)

What's New in v2 - AnsibleFest London 2015
What's New in v2 - AnsibleFest London 2015
jimi-c
?
Auto-scaled Concourse CI on AWS w/o BOSH
Auto-scaled Concourse CI on AWS w/o BOSH
ÓÓ½é ¾ÅŒù
?
Vagrant introduction for Developers
Vagrant introduction for Developers
Antons Kranga
?
London Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.js
Bethany Nicolle Griggs
?
Develop - Project Scaffolding
Develop - Project Scaffolding
Kevin Cao
?
Workshop - Golang language
Workshop - Golang language
Vincent Composieux
?
Zero to Continuous Delivery on Google Cloud
Zero to Continuous Delivery on Google Cloud
James Heggs
?
Pluralsight Webinar: Simplify Your Project Builds with Docker
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman
?
Node Summit 2018: Cloud Native Node.js
Node Summit 2018: Cloud Native Node.js
Chris Bailey
?
There is no snapshot
There is no snapshot
Ole Christian Langfj?ran
?
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Jeff Geerling
?
Ci For The Web 2.0 Guy Or Gal
Ci For The Web 2.0 Guy Or Gal
Chad Woolley
?
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Quentin Plessis
?
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
Akihiro Suda
?
Automating your workflow with Gulp.js
Automating your workflow with Gulp.js
Bo-Yi Wu
?
TechUG - Kubernetes 101 - May 2020
TechUG - Kubernetes 101 - May 2020
Elton Stoneman
?
Drupal VM for Drupal 8 Dev - MidCamp 2017
Drupal VM for Drupal 8 Dev - MidCamp 2017
Jeff Geerling
?
Using Docker with Puppet - PuppetConf 2014
Using Docker with Puppet - PuppetConf 2014
Puppet
?
ConcourseCi overview
ConcourseCi overview
Gwenn Etourneau
?
Docker in Action
Docker in Action
Alper Kanat
?
What's New in v2 - AnsibleFest London 2015
What's New in v2 - AnsibleFest London 2015
jimi-c
?
Auto-scaled Concourse CI on AWS w/o BOSH
Auto-scaled Concourse CI on AWS w/o BOSH
ÓÓ½é ¾ÅŒù
?
Vagrant introduction for Developers
Vagrant introduction for Developers
Antons Kranga
?
London Node.js User Group - Cloud-native Node.js
London Node.js User Group - Cloud-native Node.js
Bethany Nicolle Griggs
?
Develop - Project Scaffolding
Develop - Project Scaffolding
Kevin Cao
?
Zero to Continuous Delivery on Google Cloud
Zero to Continuous Delivery on Google Cloud
James Heggs
?
Pluralsight Webinar: Simplify Your Project Builds with Docker
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman
?
Node Summit 2018: Cloud Native Node.js
Node Summit 2018: Cloud Native Node.js
Chris Bailey
?
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Jeff Geerling
?
Ci For The Web 2.0 Guy Or Gal
Ci For The Web 2.0 Guy Or Gal
Chad Woolley
?
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Teamtalk - Cluster Computing Library for Pharo Smalltalk
Quentin Plessis
?
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
[±íʾ¤¬±À¤ì¤ëˆöºÏ¥À¥¦¥ó¥í©`¥É¤·¤Æ¤´ÓE¤¯¤À¤µ¤¤] 2018Äê¤ÎDocker?Moby
Akihiro Suda
?
Automating your workflow with Gulp.js
Automating your workflow with Gulp.js
Bo-Yi Wu
?
TechUG - Kubernetes 101 - May 2020
TechUG - Kubernetes 101 - May 2020
Elton Stoneman
?
Drupal VM for Drupal 8 Dev - MidCamp 2017
Drupal VM for Drupal 8 Dev - MidCamp 2017
Jeff Geerling
?
Using Docker with Puppet - PuppetConf 2014
Using Docker with Puppet - PuppetConf 2014
Puppet
?

More from Daniel Pfeiffer (6)

Event Sourcing without any Framework
Event Sourcing without any Framework
Daniel Pfeiffer
?
cats.effect.IO - Scala Vienna Meetup February 2019
cats.effect.IO - Scala Vienna Meetup February 2019
Daniel Pfeiffer
?
The Monolith First Strategy!
The Monolith First Strategy!
Daniel Pfeiffer
?
Error Handling in Scala
Error Handling in Scala
Daniel Pfeiffer
?
Event Sourcing on AWS Using Akka in Java
Event Sourcing on AWS Using Akka in Java
Daniel Pfeiffer
?
Event Sourcing using Akka on AWS
Event Sourcing using Akka on AWS
Daniel Pfeiffer
?
Event Sourcing without any Framework
Event Sourcing without any Framework
Daniel Pfeiffer
?
cats.effect.IO - Scala Vienna Meetup February 2019
cats.effect.IO - Scala Vienna Meetup February 2019
Daniel Pfeiffer
?
The Monolith First Strategy!
The Monolith First Strategy!
Daniel Pfeiffer
?
Event Sourcing on AWS Using Akka in Java
Event Sourcing on AWS Using Akka in Java
Daniel Pfeiffer
?
Event Sourcing using Akka on AWS
Event Sourcing using Akka on AWS
Daniel Pfeiffer
?
Ad

Recently uploaded (20)

Y - Recursion The Hard Way GopherCon EU 2025
Y - Recursion The Hard Way GopherCon EU 2025
Eleanor McHugh
?
Best Practice for LLM Serving in the Cloud
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
?
Folding Cheat Sheet # 9 - List Unfolding ?????? as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding ?????? as the Computational Dual of ...
Philip Schwarz
?
Azure AI Foundry: The AI app and agent factory
Azure AI Foundry: The AI app and agent factory
Maxim Salnikov
?
OpenChain Webinar - AboutCode - Practical Compliance in One Stack ¨C Licensing...
OpenChain Webinar - AboutCode - Practical Compliance in One Stack ¨C Licensing...
Shane Coughlan
?
Why Every Growing Business Needs a Staff Augmentation Company IN USA.pdf
Why Every Growing Business Needs a Staff Augmentation Company IN USA.pdf
mary rojas
?
Why Edge Computing Matters in Mobile Application Tech.pdf
Why Edge Computing Matters in Mobile Application Tech.pdf
IMG Global Infotech
?
How Automation in Claims Handling Streamlined Operations
How Automation in Claims Handling Streamlined Operations
Insurance Tech Services
?
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
?
Digital Transformation: Automating the Placement of Medical Interns
Digital Transformation: Automating the Placement of Medical Interns
Safe Software
?
Microsoft-365-Administrator-s-Guide1.pdf
Microsoft-365-Administrator-s-Guide1.pdf
mazharatknl
?
Advance Doctor Appointment Booking App With Online Payment
Advance Doctor Appointment Booking App With Online Payment
AxisTechnolabs
?
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
?
IDM Crack with Internet Download Manager 6.42 Build 41 [Latest 2025]
IDM Crack with Internet Download Manager 6.42 Build 41 [Latest 2025]
pcprocore
?
ERP Systems in the UAE: Driving Business Transformation with Smart Solutions
ERP Systems in the UAE: Driving Business Transformation with Smart Solutions
dheeodoo
?
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
?
Best AI-Powered Wearable Tech for Remote Health Monitoring in 2025
Best AI-Powered Wearable Tech for Remote Health Monitoring in 2025
SEOLIFT - SEO Company London
?
Which Hiring Management Tools Offer the Best ROI?
Which Hiring Management Tools Offer the Best ROI?
HireME
?
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
?
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
Maharshi Mallela
?
Y - Recursion The Hard Way GopherCon EU 2025
Y - Recursion The Hard Way GopherCon EU 2025
Eleanor McHugh
?
Best Practice for LLM Serving in the Cloud
Best Practice for LLM Serving in the Cloud
Alluxio, Inc.
?
Folding Cheat Sheet # 9 - List Unfolding ?????? as the Computational Dual of ...
Folding Cheat Sheet # 9 - List Unfolding ?????? as the Computational Dual of ...
Philip Schwarz
?
Azure AI Foundry: The AI app and agent factory
Azure AI Foundry: The AI app and agent factory
Maxim Salnikov
?
OpenChain Webinar - AboutCode - Practical Compliance in One Stack ¨C Licensing...
OpenChain Webinar - AboutCode - Practical Compliance in One Stack ¨C Licensing...
Shane Coughlan
?
Why Every Growing Business Needs a Staff Augmentation Company IN USA.pdf
Why Every Growing Business Needs a Staff Augmentation Company IN USA.pdf
mary rojas
?
Why Edge Computing Matters in Mobile Application Tech.pdf
Why Edge Computing Matters in Mobile Application Tech.pdf
IMG Global Infotech
?
How Automation in Claims Handling Streamlined Operations
How Automation in Claims Handling Streamlined Operations
Insurance Tech Services
?
Download Adobe Illustrator Crack free for Windows 2025?
Download Adobe Illustrator Crack free for Windows 2025?
grete1122g
?
Digital Transformation: Automating the Placement of Medical Interns
Digital Transformation: Automating the Placement of Medical Interns
Safe Software
?
Microsoft-365-Administrator-s-Guide1.pdf
Microsoft-365-Administrator-s-Guide1.pdf
mazharatknl
?
Advance Doctor Appointment Booking App With Online Payment
Advance Doctor Appointment Booking App With Online Payment
AxisTechnolabs
?
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
?
IDM Crack with Internet Download Manager 6.42 Build 41 [Latest 2025]
IDM Crack with Internet Download Manager 6.42 Build 41 [Latest 2025]
pcprocore
?
ERP Systems in the UAE: Driving Business Transformation with Smart Solutions
ERP Systems in the UAE: Driving Business Transformation with Smart Solutions
dheeodoo
?
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
CodeCleaner: Mitigating Data Contamination for LLM Benchmarking
arabelatso
?
Best AI-Powered Wearable Tech for Remote Health Monitoring in 2025
Best AI-Powered Wearable Tech for Remote Health Monitoring in 2025
SEOLIFT - SEO Company London
?
Which Hiring Management Tools Offer the Best ROI?
Which Hiring Management Tools Offer the Best ROI?
HireME
?
Sysinfo OST to PST Converter Infographic
Sysinfo OST to PST Converter Infographic
SysInfo Tools
?
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
MOVIE RECOMMENDATION SYSTEM, UDUMULA GOPI REDDY, Y24MC13085.pptx
Maharshi Mallela
?
Ad

Play on Docker