SlideShare a Scribd company logo
1 of 49
Download to read offline
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.		|
Making	DevOps Secure	with	Docker
[CON8724]
Bringing	Native	Docker to	Oracle	Solaris
Jérôme Petazzoni – Docker,	Inc
Jesse	Butler	– Oracle	Solaris
October	28,	2015
Presented	with
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Safe	Harbor	Statement
The	following	is	intended	to	outline	our	general	product	direction.	It	is	intended	for	
information	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	functionality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	timing	of	any	features	or	
functionality	described	for	Oracle’s	products	remains	at	the	sole	discretion	of	Oracle.
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Who	am	I?
● Jérôme Petazzoni (@jpetazzo)
● Before	2010:	50%	developer,	50%	sysadmin
● After	2010:	100%	DevOps at	dotCloud
– polyglot	PAAS
– microservices
– provisioning,	metrics,	scaling	...
– massive	deployment	of	LXC	and	ØMQ
● 2013:	dotCloud becomes	Docker
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Why	Docker	?
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Why	Docker	?
● Faster	application	development	cycle
● Multiplication	of	environments
● Scaling	requirements
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Yesterday:	slow	cycles	(months/years)
● Specification
● Implementation
● Validation
● Release
● Maintenance
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Today:	fast	cycles	(weeks/days)
● Minimum	Viable	Product
● Short	iterations	(sprints)
● Continuous	Deployment
● A	project	is	never	"done"	or	"over"
● Agile	methods
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Yesterday:	single	environment
● One	language
● One	framework
● One	database
● One	server
● (+	sometimes	a	dev	environment)
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Today:	many	environments
● Many	languages
● Polyglot	platforms
● Simultaneous	use	of	SQL,	NoSQL ...
● The	right	tool	for	the	right	job
● Many	servers
(everybody	has	their	local	dev env
there	are	many	envs for	testing,	CI,	QA,	etc.)
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Yesterday:	slow,	vertical	deployment
● New	versions	once	in	a	while
● Installed	to	few	servers
(sometimes	just	one)
● Scaling	=	scaling	up
(buy	bigger	servers)
● Scaling	must	be	planned	far	ahead
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Today:	rapid,	horizontal	deployment
● New	versions	all	the	time
● (every	week	/	day	/	hour)
● Installed	to	many	servers
● Scaling	=	scaling	out
(add	more	servers)
● Need	to	be	able	to	scale	quickly
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
What	is	Docker?
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
What	is	Docker?
● Container	execution	engine
● Container	build	system
● Container	image	distribution
● Huge	ecosystem
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Container	execution	engine
● ~Hypervisor	for	containers
● Container	=~	lightweight	virtual	machine
What	is	a	container???
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
DEMO
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Container
● It	looks	and	feels	like	a	VM
● Standard	UNIX	processes,	isolated	by	kernel	mechanisms:
– namespaces
– cgroups (control	groups)
– copy-on-write
● Insanely	fast	boot	times
● Insanely	low	resource	usage
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Build	system
● Dockerfile =	recipe	describing	the	build	process
● Easy	to	learn	(similar	to	shell	scripting)
● Fast	(caching	system)
● Reliable,	reproducible
● Best	of	both	worlds:
– Shell	scripts	(easy	to	write,	easy	to	understand)
– Config management	(reliability,	repeatability)
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
DEMO
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Image	format
● Problem:	VM	images	are	big
● Solution	1:	container	images	are	smaller
– doesn't	need	hardware	support,	kernel,	drivers	...
– separate	handling	of	logs,	metrics,	backups	...
● Solution	2:	images	broken	down	into	layers
– 1	layer	=	1	build	step
– example:	base	system,	packages,	code,	config
– only	transfer	updated	layers
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Distribution	protocol
● Download	containers	images	easily:
“docker pull	maven”
● Build	on	top	of	those	images	with	Dockerfiles:
“docker build	-t	jpetazzo/springapp .”
● Make	that	build	available	to	others:
“docker push	jpetazzo/springapp”
● Use	that	build	on	any	Docker host:
“docker pull	jpetazzo/springapp”
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Docker Registry
● Service	to	host	Docker images
● Multiple	options	available:
– Docker Hub
(SAAS	model,	free	for	public	images)
– Docker Trusted	Registry
(on-prem or	on-cloud)
– Self-hosted	open	source	edition
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Ecosystem:	images
● ~100	official	images
– Linux	distros
– (Debian,	Ubuntu,	CentOS,	Fedora,	...)
– components
– (MySQL,	Redis,	PostgreSQL,	MongoDB,	NGINX...)
– languages
– (Python,	Ruby,	Java,	Go,	Node...)
– applications
– (Wordpress...)
● ~150,000	contributed	images
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Ecosystem:	code
● ~100,000	GitHub repositories	have	a	Dockerfile
● ~1000	contributors	to	Docker code
● Thousands	of	projects	integrating	with	Docker
● Some	official	tools:
– Machine	(deploy	Docker hosts)
– Compose	(manage	multi-container	applications)
– Swarm	(cluster	multiple	Docker hosts	together)
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
More	resources
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
If	you	like	reading
● docs.docker.com
● Start	with	"get	started"	(duh!)
● Written	in	good	old	"howto"	style
● Reference	documentations
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
If	you	like	looking	at	/	listening	to
● training.docker.com
● Free,	official	training	videos
– Intro	to	Docker
(general	concepts)
– Docker Fundamentals
(first	steps	with	Docker)
– Docker Operations
(using	Machine,	Swarm,	Compose)
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
If	you're	in	a	hurry
● OS	X,	Windows:	Docker Toolbox	+	boot2docker
– tiny	VM	image	(less	than	30	MB)
– works	on	(most)	physical	and	virtual	machines
● Linux:	get.docker.com
– official	packages	for	most	distros
– get.docker.com	(Cloud	Init-ready)
● Solaris:
– boot2docker	VM	in	Oracle	VirtualBox
– soon:	Docker Engine	native	on	Solaris
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Linux?	OSX?	Windows?	Solaris?
● Docker on	Linux	runs	Linux	images
● Docker on	Windows	will	run	Windows	images
● Docker on	Solaris	will	run	Solaris	images
● Docker on	OS	X	is	really	Docker on	Linux,
within	a	boot2docker	VM	in	VirtualBox
● Docker on	Windwos is	(for	now)	the	same
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
One	API	to	rule	them	all
● All	ports	of	Docker expose	the	same	API
● Docker client is	available	on	all	platforms
● Docker client can	talk	to	any	other	platform
● Docker allows	to	control	all	workloads:
– Linux
– Solaris	(soon)
– Windows	(soon)
● …	using	uniform	APIs,	dashboards,	tools.
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Native	Docker on	Oracle	Solaris	
Providing	a	dev/ops	toolkit	in	the	OS
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
A	Brief	History
• Oracle	Solaris	Zones	first	delivered	in	2005	with	Oracle	Solaris	10
– Lightweight	OS	virtualization,	combined	with	resource	management
– Originally	intended	to	be	application-specific	single-purpose	instances
– Sparse	root	deployment	option	was	ideal	for	application	deployment,	but		
most	users	were	running	general	compute	environments
• Oracle	Solaris	11	streamlined	for	the	OS	container
– Majority	of	user	feedback	steered	us	toward	a	default	‘solaris’	non-global	zone	
brand	which	provides	a	general	compute	environment
– Full	package	image,	full	host	of	services	booted	from	init and	managed	by	SMF
Oracle	Solaris	Zones
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Oracle	Solaris	Zones	Today
• Oracle	Solaris	11	FCS	Native	Zones
– ‘solaris’	brand:	non-global	zone	OS	containers
– Fully	integrated	with	IPS	packaging	system,	making	atomic	update	and	rollback	
with	the	host	automatic
• Oracle	Solaris	11.2	Kernel	Zones
– ‘solaris-kz’	brand:	VM	global	zones,	each	with	independent	kernel	and	image
– Same	tooling	as	native	zones,	applications	run	seamlessly	between	two	brands
Native	Zones	&	Kernel	Zones
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Native	Zones	Wishlist
• Faster	deployment	and	boot
• Improved	lifecycle	management
• Application-specific	zone	instances
• Streamlined	repetitive	configuration	tasks
• Application	containers
User	Feedback	Continues	to	Guide	Feature	Enhancements
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Docker on	Oracle	Solaris
• A	native	Docker on	Oracle	Solaris,	with	similar	runtime	characteristics	
as	experienced	on	Linux,	would	check	all	of	the	boxes
• Planning	for	work	to	improve	in	these	areas	coincided	with	our	
noticing	a	considerable	uptick	in	Docker adoption
• As	with	OpenStack,	participate	rather	than	reinvent
• Integration	with	other	container	technologies
already	a	goal	for	the	Docker project
Good	timing	and	well-aligned
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Oracle	Solaris	OS	Features:	What	We	Already	Have
Observability &	Reporting
Configuration	Management	
&	Auditing
Fault	Management
Service	Monitoring	&	
Predictive	Self	Healing
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Oracle	Solaris	OS	Features:	Built	for	Containers
Container	Security Network	Virtualization
Storage	Virtualization
Robust	and	Proven	
Container	Technology
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Docker and	Oracle	Solaris	Zones
• Docker deploys	ideally	minimal	containers,	in	both	size	and	intent
– Smaller	images	means	less	surface	for	administration,	maintenance	and	attack
– The	more	express	the	intent	of	an	instance,	the	less	complex	the	configuration
• Oracle	Solaris	Native	Zones	are	rock	solid	OS	containers
– OS	containers	run	a	general	compute	environment,	not	ideal	for	Docker
– Full	package	image	deployment,	even	cloning	takes	longer	than	ideal	for	Docker
– Oracle	Solaris	Native	Zones	do	exactly	what	they	are	designed	to	do,	very	well
What’s	missing?	Mostly,	it’s	by	design.
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Docker and	Solaris	Zones
• Image	Content
– Even	when	cloning	the	root	fs,	we	still	need	smaller	base	images
– Ideally	a	Docker container	runs	as	a	service,	not	another	instance	to	admin
• Instance	Boot	Configuration
– Ideally,	we	run	a	single	intent:	one	application,	maybe	only	one	process
– Integration	with	SMF	and	other	core	technologies	is	required
Two	main	requirement	scopes
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Integrating	Docker and	Solaris	Zones
• Docker instances	on	Oracle	Solaris	are	native	non-global	zones
– Applications	which	run	in	Solaris	Zones	can	run	in	Docker on	Oracle	Solaris
• Docker leverages	robust,	mature	Solaris	Zones	technology
– Resource	management,	scheduling,	networking,	storage	and	security
• Docker instances	are	not	created	nor	managed	via	zones	toolchain
– Instances	are	created	via	docker(1),	not	zonecfg(1)	/	zoneadm(1)
• Docker instances	can	be	monitored	via	zones-related	utilities
– zonestat,	ps –z,	prstat –Z,	etc
Oracle	Solaris	Zones	and	Resource	Management
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Integrating	Docker and	Solaris	Zones
• A	smaller	base	image,	constructed	from	IPS,	used	for	all	Docker
instances	on	Oracle	Solaris
• A	working	IPS	image	in	the	instance	allows	for	modification	via	pkg(1)
• ‘pkg verify’	lends	added	confidence	in	the	assembled	Docker image
• Transformation	to	and	from	Unified	Archives	to	allow	for	migration	
between	Docker instances	and	other	Oracle	Solaris	platforms
Image	Management	and	Deployment
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Integrating	Docker and	Solaris	Zones
• SMF	configuration	is	quickly	injected	during	instance	deployment
• We	boot	to	a	very	sparse	environment,	with	a	small	handful	of	
processes	providing	a	basic	runtime	and	SMF	support
• Having	an	init isn’t	so	bad,	after	all
Boot	and	runtime	configuration
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Integrating	Docker and	Solaris	Zones
• Networking
– Crossbow:	World-class	virtual	networking	stack	in	the	OS
– Each	instance	has	an	exclusive	IP	stack	and	is	well-integrated
• Storage
– As	with	all	Zones,	rootfs is	based	upon	ZFS,	rapidly	deployed	via	ZFS	cloning
– All	the	benefits	of	the	native	zones	storage	support
• delegated	datasets,	volumes,	mounts,	etc
Networking	and	storage
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Oracle	Solaris	and	the	Open	Containers	Initiative
• Earlier	this	year,	Docker,	Inc.	announced	the	donation	of	a	core	
piece	of	their	software	to	seed	a	new	Open	Container	Initiative
• Many	system	vendors	and	service	providers	joined	early,	
including	Oracle
• As	we’ve	been	working	as	part	of	OCI,	we	have	adopted	the
new	container	format	for	Docker on	Oracle	Solaris
• Docker integrates	with	Oracle	Solaris	Zones	through	our	internal	
implementation	of	the	OCI	specification
Collaborating	on	an	open	container	and	runtime	specification
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Docker &	
Zones
Security
ZFS
BEs
IPS
RAD
SMF
Dtrace
Audit
The	Docker Ecosystem	on	Oracle	Solaris
• Oracle	Solaris	Zones	in	Docker
• Secure	virtual	storage	&	network
• Atomic	update	and	seamless	rollback	
via	IPS	&	Boot	Environments
• Secure	remote	administration	&	
Role-based	access	control
• Observability,	configuration	
management	&	audit
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Initial	Best	Practices
• Docker as	a	toolkit
– Typically	positioned	as	an	application	packaging	and	deployment	automation	
framework	that	maps	very	well	to	core	dev/ops	principals
– Integrates	very	well	with	CI/CD	workflows
• When	to	consider	Docker on	Oracle	Solaris
– Workloads	running	in	single	intent	instances	or	that	can	be	decomposed	into	
single	intent	instances	are	good	candidates	for	migration	to	Docker on	Oracle	
Solaris
– New	projects	which	can	be	architected	as	cooperative	distributed	services	are	
good	candidates	for	new	development	in	Docker on	Oracle	Solaris
Docker is	a	dev/ops	jumpstart
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Initial	Best	Practices
• Docker host	selection:	metal	or	VM
– If	performance	and	scaleout is	the	main	concern	deploy	on	metal
– If	migration	and	flexibility	is	the	main	concern,	or	potentially	a	future	concern,	
deploy	in	a	kernel	zone
• Don’t	over-rotate	on	decomposition
– If	application	components	and	dependencies	can	be	mapped	to	individual	
Docker images	and	instances,	pursue	that	course
– If	they	cannot,	use	an	Oracle	Solaris	Zone	or	Kernel	Zone,	depending	upon	
platform	requirements
Docker is	a	dev/ops	jumpstart
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Q&A
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Don’t	Miss	These	Sessions
What When Topic Location
CON8468 Wed,	12:15	p.m. DevOps Done	Right:	Secure	Virtualization	with	Oracle	Solaris Intercon B
CON8605 Wed,	1:45	p.m Developing	the	Platform	of	the	Future:	Oracle	Solaris Engineering Intercon B
CON8604 Wed,	3:00	p.m. Customer	Panel:	Customer	Insights	into	Deploying	Oracle	Solaris Intercon B
CON8337 Thu,	9:30	a.m. Developer	Cloud	Made	Simple:	How	to	Build	an	OpenStack Developer	Cloud	 Intercon B
CON8726 Thu,	10:45	a.m. Keeping	your	Compliance/Security	Auditor	Happy Intercon B
CON9757 Thu,	12:00	p.m. Oracle	Solaris:	Building	a	Secure	Platform-as-a-Service	Hybrid	Cloud Intercon B
CON8354 Thu,	1:15	p.m. The	DBaaS You’ve	Been	Waiting	for—Oracle	Database,	Oracle	Solaris,	SPARC,	and	
OpenStack
Intercon B
48
48
Copyright	©	2015, Oracle	and/or	its	affiliates.	All	rights	reserved.	
Safe	Harbor	Statement
The	preceding	is	intended	to	outline	our	general	product	direction.	It	is	intended	for	
information	purposes	only,	and	may	not	be	incorporated	into	any	contract.	It	is	not	a	
commitment	to	deliver	any	material,	code,	or	functionality,	and	should	not	be	relied	upon	
in	making	purchasing	decisions.	The	development,	release,	and	timing	of	any	features	or	
functionality	described	for	Oracle’s	products	remains	at	the	sole	discretion	of	Oracle.

More Related Content

What's hot

A Shift from Monolith to Microservice using Docker
A Shift from Monolith to Microservice using DockerA Shift from Monolith to Microservice using Docker
A Shift from Monolith to Microservice using DockerAjeet Singh Raina
 
Why Docker
Why DockerWhy Docker
Why DockerdotCloud
 
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...Ambassador Labs
 
Getting started with docker
Getting started with dockerGetting started with docker
Getting started with dockerJEMLI Fathi
 
Docker for any type of workload and any IT Infrastructure
Docker for any type of workload and any IT InfrastructureDocker for any type of workload and any IT Infrastructure
Docker for any type of workload and any IT InfrastructureDocker, Inc.
 
Are VM Passé?
Are VM Passé? Are VM Passé?
Are VM Passé? dotCloud
 
Docker based-pipelines
Docker based-pipelinesDocker based-pipelines
Docker based-pipelinesDevOps.com
 
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...Edureka!
 
CI/CD with Kubernetes
CI/CD with KubernetesCI/CD with Kubernetes
CI/CD with KubernetesHart Hoover
 
DockerCon SF 2015: Keynote Day 1
DockerCon SF 2015: Keynote Day 1DockerCon SF 2015: Keynote Day 1
DockerCon SF 2015: Keynote Day 1Docker, Inc.
 
John Engates Keynote at Dockercon 14
John Engates Keynote at Dockercon 14John Engates Keynote at Dockercon 14
John Engates Keynote at Dockercon 14dotCloud
 
Dockerize the World
Dockerize the WorldDockerize the World
Dockerize the Worlddamovsky
 
Introduction to containers running dockers using kubernetes - הרצאה לכנס מיק...
Introduction to containers  running dockers using kubernetes - הרצאה לכנס מיק...Introduction to containers  running dockers using kubernetes - הרצאה לכנס מיק...
Introduction to containers running dockers using kubernetes - הרצאה לכנס מיק...Zohar Stolar
 
Docker, the Future of DevOps
Docker, the Future of DevOpsDocker, the Future of DevOps
Docker, the Future of DevOpsandersjanmyr
 

What's hot (20)

A Shift from Monolith to Microservice using Docker
A Shift from Monolith to Microservice using DockerA Shift from Monolith to Microservice using Docker
A Shift from Monolith to Microservice using Docker
 
Why Docker
Why DockerWhy Docker
Why Docker
 
Docker in real life
Docker in real lifeDocker in real life
Docker in real life
 
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
 
Getting started with docker
Getting started with dockerGetting started with docker
Getting started with docker
 
Docker for any type of workload and any IT Infrastructure
Docker for any type of workload and any IT InfrastructureDocker for any type of workload and any IT Infrastructure
Docker for any type of workload and any IT Infrastructure
 
Are VM Passé?
Are VM Passé? Are VM Passé?
Are VM Passé?
 
Docker based-pipelines
Docker based-pipelinesDocker based-pipelines
Docker based-pipelines
 
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
What is Docker | Docker Tutorial for Beginners | Docker Container | DevOps To...
 
CI/CD with Kubernetes
CI/CD with KubernetesCI/CD with Kubernetes
CI/CD with Kubernetes
 
DockerCon SF 2015: Keynote Day 1
DockerCon SF 2015: Keynote Day 1DockerCon SF 2015: Keynote Day 1
DockerCon SF 2015: Keynote Day 1
 
John Engates Keynote at Dockercon 14
John Engates Keynote at Dockercon 14John Engates Keynote at Dockercon 14
John Engates Keynote at Dockercon 14
 
Dockerize the World
Dockerize the WorldDockerize the World
Dockerize the World
 
Introduction to containers running dockers using kubernetes - הרצאה לכנס מיק...
Introduction to containers  running dockers using kubernetes - הרצאה לכנס מיק...Introduction to containers  running dockers using kubernetes - הרצאה לכנס מיק...
Introduction to containers running dockers using kubernetes - הרצאה לכנס מיק...
 
War of Openstack Private Cloud Distribution
War of Openstack Private Cloud DistributionWar of Openstack Private Cloud Distribution
War of Openstack Private Cloud Distribution
 
Web fundamentals
Web fundamentalsWeb fundamentals
Web fundamentals
 
Docker meetup-20-apr-17-openshit
Docker meetup-20-apr-17-openshitDocker meetup-20-apr-17-openshit
Docker meetup-20-apr-17-openshit
 
Learning Docker with Thomas
Learning Docker with ThomasLearning Docker with Thomas
Learning Docker with Thomas
 
Docker, the Future of DevOps
Docker, the Future of DevOpsDocker, the Future of DevOps
Docker, the Future of DevOps
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 

Viewers also liked

Oracle Advanced SQL and Analytic Functions
Oracle Advanced SQL and Analytic FunctionsOracle Advanced SQL and Analytic Functions
Oracle Advanced SQL and Analytic FunctionsZohar Elkayam
 
Academy PRO: Docker. Part 2
Academy PRO: Docker. Part 2Academy PRO: Docker. Part 2
Academy PRO: Docker. Part 2Binary Studio
 
Docker in the Oracle Universe / WebLogic 12c / OFM 12c
Docker in the Oracle Universe / WebLogic 12c / OFM 12cDocker in the Oracle Universe / WebLogic 12c / OFM 12c
Docker in the Oracle Universe / WebLogic 12c / OFM 12cFrank Munz
 
Academy PRO: Docker. Part 1
Academy PRO: Docker. Part 1Academy PRO: Docker. Part 1
Academy PRO: Docker. Part 1Binary Studio
 
Academy PRO: Docker. Lecture 3
Academy PRO: Docker. Lecture 3Academy PRO: Docker. Lecture 3
Academy PRO: Docker. Lecture 3Binary Studio
 
Oracle database on Docker Container
Oracle database on Docker ContainerOracle database on Docker Container
Oracle database on Docker ContainerJesus Guzman
 
Tecnologias Oracle em Docker Containers On-premise e na Nuvem
Tecnologias Oracle em Docker Containers On-premise e na NuvemTecnologias Oracle em Docker Containers On-premise e na Nuvem
Tecnologias Oracle em Docker Containers On-premise e na NuvemBruno Borges
 
Academy PRO: D3, part 3
Academy PRO: D3, part 3Academy PRO: D3, part 3
Academy PRO: D3, part 3Binary Studio
 
Academy PRO: Docker. Part 4
Academy PRO: Docker. Part 4Academy PRO: Docker. Part 4
Academy PRO: Docker. Part 4Binary Studio
 
Docker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker, Inc.
 
Docker introduction
Docker introductionDocker introduction
Docker introductiondotCloud
 
Alphorm.com Formation Docker (2/2) - Administration Avancée
Alphorm.com Formation Docker (2/2) - Administration Avancée Alphorm.com Formation Docker (2/2) - Administration Avancée
Alphorm.com Formation Docker (2/2) - Administration Avancée Alphorm
 

Viewers also liked (12)

Oracle Advanced SQL and Analytic Functions
Oracle Advanced SQL and Analytic FunctionsOracle Advanced SQL and Analytic Functions
Oracle Advanced SQL and Analytic Functions
 
Academy PRO: Docker. Part 2
Academy PRO: Docker. Part 2Academy PRO: Docker. Part 2
Academy PRO: Docker. Part 2
 
Docker in the Oracle Universe / WebLogic 12c / OFM 12c
Docker in the Oracle Universe / WebLogic 12c / OFM 12cDocker in the Oracle Universe / WebLogic 12c / OFM 12c
Docker in the Oracle Universe / WebLogic 12c / OFM 12c
 
Academy PRO: Docker. Part 1
Academy PRO: Docker. Part 1Academy PRO: Docker. Part 1
Academy PRO: Docker. Part 1
 
Academy PRO: Docker. Lecture 3
Academy PRO: Docker. Lecture 3Academy PRO: Docker. Lecture 3
Academy PRO: Docker. Lecture 3
 
Oracle database on Docker Container
Oracle database on Docker ContainerOracle database on Docker Container
Oracle database on Docker Container
 
Tecnologias Oracle em Docker Containers On-premise e na Nuvem
Tecnologias Oracle em Docker Containers On-premise e na NuvemTecnologias Oracle em Docker Containers On-premise e na Nuvem
Tecnologias Oracle em Docker Containers On-premise e na Nuvem
 
Academy PRO: D3, part 3
Academy PRO: D3, part 3Academy PRO: D3, part 3
Academy PRO: D3, part 3
 
Academy PRO: Docker. Part 4
Academy PRO: Docker. Part 4Academy PRO: Docker. Part 4
Academy PRO: Docker. Part 4
 
Docker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker 101: Introduction to Docker
Docker 101: Introduction to Docker
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Alphorm.com Formation Docker (2/2) - Administration Avancée
Alphorm.com Formation Docker (2/2) - Administration Avancée Alphorm.com Formation Docker (2/2) - Administration Avancée
Alphorm.com Formation Docker (2/2) - Administration Avancée
 

Similar to Making DevOps Secure with Docker on Solaris (Oracle Open World, with Jesse Butler)

Modern App Development with Oracle Cloud
Modern App Development with Oracle CloudModern App Development with Oracle Cloud
Modern App Development with Oracle CloudJuan Carlos Ruiz Rico
 
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and MorePolyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and MoreShaun Smith
 
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
Enterprise Ready OpenStack,  Wiekus Beukes, OracleEnterprise Ready OpenStack,  Wiekus Beukes, Oracle
Enterprise Ready OpenStack, Wiekus Beukes, OracleSriram Subramanian
 
Building beacon-enabled apps with Oracle MCS
Building beacon-enabled apps with Oracle MCSBuilding beacon-enabled apps with Oracle MCS
Building beacon-enabled apps with Oracle MCSSteven Davelaar
 
Mastering DevOps with Oracle
Mastering DevOps with Oracle Mastering DevOps with Oracle
Mastering DevOps with Oracle jeckels
 
DevOps - Developer Cloud Service Demo
DevOps - Developer Cloud Service DemoDevOps - Developer Cloud Service Demo
DevOps - Developer Cloud Service DemoMee Nam Lee
 
D-DAY 2015 Paas ORACLE
D-DAY 2015 Paas ORACLED-DAY 2015 Paas ORACLE
D-DAY 2015 Paas ORACLEDEVOPS D-DAY
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOTN Systems Hub
 
Rapid private cloud with oracle vm and oracle openstack for oracle linux
Rapid private cloud with oracle vm and oracle openstack for oracle linuxRapid private cloud with oracle vm and oracle openstack for oracle linux
Rapid private cloud with oracle vm and oracle openstack for oracle linuxOTN Systems Hub
 
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)jeckels
 
What is DevOps?
What is DevOps?What is DevOps?
What is DevOps?jeckels
 
MySQL DBaaS with OpenStack Trove
MySQL DBaaS with OpenStack TroveMySQL DBaaS with OpenStack Trove
MySQL DBaaS with OpenStack TroveMatt Lord
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a ServiceOracle Korea
 
Embracing SOA and the Cloud
Embracing SOA and the CloudEmbracing SOA and the Cloud
Embracing SOA and the CloudHeba Fouad
 
Oracle Ravello Presentation 7Dec16 v1
Oracle Ravello Presentation 7Dec16 v1Oracle Ravello Presentation 7Dec16 v1
Oracle Ravello Presentation 7Dec16 v1Kurt Liu
 
Oracle Cloud With Azure DevOps Pipelines
Oracle Cloud With Azure DevOps PipelinesOracle Cloud With Azure DevOps Pipelines
Oracle Cloud With Azure DevOps PipelinesJohan Louwers
 
Solving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudSolving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudHeba Fouad
 

Similar to Making DevOps Secure with Docker on Solaris (Oracle Open World, with Jesse Butler) (20)

Modern App Development with Oracle Cloud
Modern App Development with Oracle CloudModern App Development with Oracle Cloud
Modern App Development with Oracle Cloud
 
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and MorePolyglot! A Lightweight Cloud Platform for Java SE, Node, and More
Polyglot! A Lightweight Cloud Platform for Java SE, Node, and More
 
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
Enterprise Ready OpenStack,  Wiekus Beukes, OracleEnterprise Ready OpenStack,  Wiekus Beukes, Oracle
Enterprise Ready OpenStack, Wiekus Beukes, Oracle
 
Building beacon-enabled apps with Oracle MCS
Building beacon-enabled apps with Oracle MCSBuilding beacon-enabled apps with Oracle MCS
Building beacon-enabled apps with Oracle MCS
 
Mastering DevOps with Oracle
Mastering DevOps with Oracle Mastering DevOps with Oracle
Mastering DevOps with Oracle
 
DevOps - Developer Cloud Service Demo
DevOps - Developer Cloud Service DemoDevOps - Developer Cloud Service Demo
DevOps - Developer Cloud Service Demo
 
D-DAY 2015 Paas ORACLE
D-DAY 2015 Paas ORACLED-DAY 2015 Paas ORACLE
D-DAY 2015 Paas ORACLE
 
Oracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStackOracle Solaris Cloud Management and Deployment with OpenStack
Oracle Solaris Cloud Management and Deployment with OpenStack
 
OpenStack & MySQL
OpenStack & MySQLOpenStack & MySQL
OpenStack & MySQL
 
Rapid private cloud with oracle vm and oracle openstack for oracle linux
Rapid private cloud with oracle vm and oracle openstack for oracle linuxRapid private cloud with oracle vm and oracle openstack for oracle linux
Rapid private cloud with oracle vm and oracle openstack for oracle linux
 
Oracle Mobile Cloud Service
Oracle Mobile Cloud ServiceOracle Mobile Cloud Service
Oracle Mobile Cloud Service
 
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)
Approaches for WebLogic Server in the Cloud (OpenWorld, September 2014)
 
What is DevOps?
What is DevOps?What is DevOps?
What is DevOps?
 
MySQL DBaaS with OpenStack Trove
MySQL DBaaS with OpenStack TroveMySQL DBaaS with OpenStack Trove
MySQL DBaaS with OpenStack Trove
 
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
[2015 Oracle Cloud Summit] 2. Innovate with Oracle Platform as a Service
 
B4 making dev_ops_really_work
B4 making dev_ops_really_workB4 making dev_ops_really_work
B4 making dev_ops_really_work
 
Embracing SOA and the Cloud
Embracing SOA and the CloudEmbracing SOA and the Cloud
Embracing SOA and the Cloud
 
Oracle Ravello Presentation 7Dec16 v1
Oracle Ravello Presentation 7Dec16 v1Oracle Ravello Presentation 7Dec16 v1
Oracle Ravello Presentation 7Dec16 v1
 
Oracle Cloud With Azure DevOps Pipelines
Oracle Cloud With Azure DevOps PipelinesOracle Cloud With Azure DevOps Pipelines
Oracle Cloud With Azure DevOps Pipelines
 
Solving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloudSolving todays problems with oracle integration cloud
Solving todays problems with oracle integration cloud
 

More from Jérôme Petazzoni

Use the Source or Join the Dark Side: differences between Docker Community an...
Use the Source or Join the Dark Side: differences between Docker Community an...Use the Source or Join the Dark Side: differences between Docker Community an...
Use the Source or Join the Dark Side: differences between Docker Community an...Jérôme Petazzoni
 
Orchestration for the rest of us
Orchestration for the rest of usOrchestration for the rest of us
Orchestration for the rest of usJérôme Petazzoni
 
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...Jérôme Petazzoni
 
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...Jérôme Petazzoni
 
How to contribute to large open source projects like Docker (LinuxCon 2015)
How to contribute to large open source projects like Docker (LinuxCon 2015)How to contribute to large open source projects like Docker (LinuxCon 2015)
How to contribute to large open source projects like Docker (LinuxCon 2015)Jérôme Petazzoni
 
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...Jérôme Petazzoni
 
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxCon
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxConAnatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxCon
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxConJérôme Petazzoni
 
Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)Jérôme Petazzoni
 
Deploy microservices in containers with Docker and friends - KCDC2015
Deploy microservices in containers with Docker and friends - KCDC2015Deploy microservices in containers with Docker and friends - KCDC2015
Deploy microservices in containers with Docker and friends - KCDC2015Jérôme Petazzoni
 
Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015Jérôme Petazzoni
 
Immutable infrastructure with Docker and containers (GlueCon 2015)
Immutable infrastructure with Docker and containers (GlueCon 2015)Immutable infrastructure with Docker and containers (GlueCon 2015)
Immutable infrastructure with Docker and containers (GlueCon 2015)Jérôme Petazzoni
 
The Docker ecosystem and the future of application deployment
The Docker ecosystem and the future of application deploymentThe Docker ecosystem and the future of application deployment
The Docker ecosystem and the future of application deploymentJérôme Petazzoni
 
Docker: automation for the rest of us
Docker: automation for the rest of usDocker: automation for the rest of us
Docker: automation for the rest of usJérôme Petazzoni
 
Docker Non Technical Presentation
Docker Non Technical PresentationDocker Non Technical Presentation
Docker Non Technical PresentationJérôme Petazzoni
 
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special EditionIntroduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special EditionJérôme Petazzoni
 
Introduction to Docker, December 2014 "Tour de France" Edition
Introduction to Docker, December 2014 "Tour de France" EditionIntroduction to Docker, December 2014 "Tour de France" Edition
Introduction to Docker, December 2014 "Tour de France" EditionJérôme Petazzoni
 
Containers, Docker, and Microservices: the Terrific Trio
Containers, Docker, and Microservices: the Terrific TrioContainers, Docker, and Microservices: the Terrific Trio
Containers, Docker, and Microservices: the Terrific TrioJérôme Petazzoni
 
Containerization is more than the new Virtualization: enabling separation of ...
Containerization is more than the new Virtualization: enabling separation of ...Containerization is more than the new Virtualization: enabling separation of ...
Containerization is more than the new Virtualization: enabling separation of ...Jérôme Petazzoni
 
Pipework: Software-Defined Network for Containers and Docker
Pipework: Software-Defined Network for Containers and DockerPipework: Software-Defined Network for Containers and Docker
Pipework: Software-Defined Network for Containers and DockerJérôme Petazzoni
 
Docker Tips And Tricks at the Docker Beijing Meetup
Docker Tips And Tricks at the Docker Beijing MeetupDocker Tips And Tricks at the Docker Beijing Meetup
Docker Tips And Tricks at the Docker Beijing MeetupJérôme Petazzoni
 

More from Jérôme Petazzoni (20)

Use the Source or Join the Dark Side: differences between Docker Community an...
Use the Source or Join the Dark Side: differences between Docker Community an...Use the Source or Join the Dark Side: differences between Docker Community an...
Use the Source or Join the Dark Side: differences between Docker Community an...
 
Orchestration for the rest of us
Orchestration for the rest of usOrchestration for the rest of us
Orchestration for the rest of us
 
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...
Cgroups, namespaces, and beyond: what are containers made from? (DockerCon Eu...
 
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...
Docker : quels enjeux pour le stockage et réseau ? Paris Open Source Summit ...
 
How to contribute to large open source projects like Docker (LinuxCon 2015)
How to contribute to large open source projects like Docker (LinuxCon 2015)How to contribute to large open source projects like Docker (LinuxCon 2015)
How to contribute to large open source projects like Docker (LinuxCon 2015)
 
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...
Containers, Docker, and Security: State Of The Union (LinuxCon and ContainerC...
 
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxCon
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxConAnatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxCon
Anatomy of a Container: Namespaces, cgroups & Some Filesystem Magic - LinuxCon
 
Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)Microservices. Microservices everywhere! (At OSCON 2015)
Microservices. Microservices everywhere! (At OSCON 2015)
 
Deploy microservices in containers with Docker and friends - KCDC2015
Deploy microservices in containers with Docker and friends - KCDC2015Deploy microservices in containers with Docker and friends - KCDC2015
Deploy microservices in containers with Docker and friends - KCDC2015
 
Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015Containers: from development to production at DevNation 2015
Containers: from development to production at DevNation 2015
 
Immutable infrastructure with Docker and containers (GlueCon 2015)
Immutable infrastructure with Docker and containers (GlueCon 2015)Immutable infrastructure with Docker and containers (GlueCon 2015)
Immutable infrastructure with Docker and containers (GlueCon 2015)
 
The Docker ecosystem and the future of application deployment
The Docker ecosystem and the future of application deploymentThe Docker ecosystem and the future of application deployment
The Docker ecosystem and the future of application deployment
 
Docker: automation for the rest of us
Docker: automation for the rest of usDocker: automation for the rest of us
Docker: automation for the rest of us
 
Docker Non Technical Presentation
Docker Non Technical PresentationDocker Non Technical Presentation
Docker Non Technical Presentation
 
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special EditionIntroduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
Introduction to Docker, December 2014 "Tour de France" Bordeaux Special Edition
 
Introduction to Docker, December 2014 "Tour de France" Edition
Introduction to Docker, December 2014 "Tour de France" EditionIntroduction to Docker, December 2014 "Tour de France" Edition
Introduction to Docker, December 2014 "Tour de France" Edition
 
Containers, Docker, and Microservices: the Terrific Trio
Containers, Docker, and Microservices: the Terrific TrioContainers, Docker, and Microservices: the Terrific Trio
Containers, Docker, and Microservices: the Terrific Trio
 
Containerization is more than the new Virtualization: enabling separation of ...
Containerization is more than the new Virtualization: enabling separation of ...Containerization is more than the new Virtualization: enabling separation of ...
Containerization is more than the new Virtualization: enabling separation of ...
 
Pipework: Software-Defined Network for Containers and Docker
Pipework: Software-Defined Network for Containers and DockerPipework: Software-Defined Network for Containers and Docker
Pipework: Software-Defined Network for Containers and Docker
 
Docker Tips And Tricks at the Docker Beijing Meetup
Docker Tips And Tricks at the Docker Beijing MeetupDocker Tips And Tricks at the Docker Beijing Meetup
Docker Tips And Tricks at the Docker Beijing Meetup
 

Recently uploaded

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
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
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
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
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
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
 

Recently uploaded (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
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
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
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
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
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
 

Making DevOps Secure with Docker on Solaris (Oracle Open World, with Jesse Butler)