SlideShare a Scribd company logo
Daniël van Gils
Developer Advocate
@foldingbeauty
daniel@cloud66.com
www.cloud66.com
Running Microservices in
Production with Docker
= public/private/hybrid = yours
Services
ǽ
> 4000 serversEasy Ops tools build for Devs
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
• The services are easy to replace.
• Services are organized around capabilities, e.g., user
interface front-end, recommendation, logistics, billing, etc.
• Services can be implemented using different programming
languages, databases, hardware and software environment,
depending on what fits best.
microservice architecture
ƗƗƗ
Ɨ
Ɨ
ƗƗ
Ɨ
Ɨ
Ɨ
Ɨ
Ɨ
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
How do I run microservices in production using Docker.
NOISE
$docker run alpine echo 'hello world’
production
?
$docker-compose up -d
time
skills
Ɨ
ǽ
#1 the right container image
#2 containers in production
ƗƗ
microservice example
service
Ɨ containers
server cluster(s)Ȑ
imageƗǽ
ƗƗ
= code
= docker file
= docker engine
= platform
Ɨ
build
ship
deploy
Ɨǽ
test test
Ɨǽ
Ɨǽ
dev machine
continuous
integration
continuous
deployment
code
service
Ɨ
Ɨ
api
Ɨǽ
Ɨǽ
worker
message
queue
frontend
request work
status update
microservice example
Ɨ
ƗƗǽ
Ɨǽ
I can bake 1 donut
in x seconds.
message
queue
I want 5
donuts
request 5 donuts
donuts are baking
donuts are ready
I know how to receive
orders and give
orders to baking
minions.
https://github.com/cloud66-samples/webinar_codefresh
ƗƗ
Ɨ
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
Ɨǽ
ƗƗ
isolated test
Ɨǽ
ƗƗ
isolated test
(API)
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
Ɨǽ
ƗƗ
isolated test
(WORKER)
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
Ɨǽ
ƗƗ
integration test + development
Ɨǽ
ƗƗ
Ɨǽ
ƗƗ Ɨǽ
ƗƗ
How do I run microservices in production using Docker.
containerization
Ǹ
the containerization machine
ƗƗƗ
you can’t polish a turd
Ɨ
containerization
Ǹ
Dž
ƗƗƗ =
Ɨǽ
“The right image should be the same in all your
environments.”
Ɨǽ
“The right tests should be the same in all your
environments.”
Ɨǽ
“I didn't have time to create a slim image,
so I created a fat one instead.”
Ɨǽ
“The right image needs at least 5 kisses”
kiss = keep an image s…, smart ass
slim secure speedy stable set
SLIM
Start with the smallest minimal
image you can find and trust.
Remove compile time
dependencies.
Remove packages you don’t need.
Squash layers to reduce size.
Run stats for the image.
habitus.io
blog.cloud66.com
Ɨǽ
How do I run microservices in production using Docker.
How do I run microservices in production using Docker.
SLIM
SECURE
SPEEDY
STABLE

SET
Ɨǽ
SECURE
Remove all the secrets.
Patch to the latest security
updates.
Run the image with the
right UID.
Test the image.
https://github.com/docker/
docker-bench-security
Ɨǽ
SMALL
SECURE
SPEEDY
STABLE

SET
Ɨǽ
SPEEDY
Optimize code.
Memory and cpu usage.
One process.
Load testing.
Ɨǽ
SLIM
SECURE
SPEEDY
STABLE

SET
Ɨǽ
STABLE
Lock the image version.
Lock the runtime version(s).
Tag your image.
Proper logging.
Ɨǽ
SLIM
SECURE
SPEEDY
STABLE

SET
Ɨǽ
SET
Use volumes wisely, use
external services for
persistency, don’t abuse
host system.
Loosely coupled.
Remove things which are
hard to maintain in
production.
Ɨǽ
How do I run microservices in production using Docker.
Reality Check!
Ɨǽ
Ɨ 
monolith containerization ± 70 %
(multi tenant)
monolith 1x
monolith image FAT
Ɨǽ
Ɨ

API first containerization ± 20%
Ɨǽ
Ɨ
api 1x
frontend 1x
image frontend FAT
image api FAT
Ɨǽ
Ɨ

splitting monolith containerization ± 6%
Ɨǽ
api 6x
frontend 1x
Ɨǽ
Ɨ
workers 10x
ƗƗƗ
ƗƗƗƗ
ƗƗ
image frontend FAT
image api THIN
image workers THIN
ƗƗƗ
ƗƗ
Ɨ
Ɨǽ
Ɨǽ
A 6x
B 12x
Ɨǽ
Ɨ
C 10x
ƗƗƗ
ƗƗƗƗ
ƗƗ
image B THIN
image A THIN
image C THIN
ƗƗƗ
ƗƗ
Ɨ
microservice architecture ± 4%
ƗƗƗ
ƗƗ
ƗƗ
ƗƗ
ƗƗ
Ɨ

message queue
Ɨǽ
microservice
microimage
microplatform?
law of conservation of energy?
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
How do I run microservices in production using Docker.
Choose your platform wisely.
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
LIFECYCLE
Have an image guideline.
Create a workflow using the same
image in all the software cycle
stages.
From design to production mimic
the environment.
Test heavily.
Ǻ
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
ORCHESTRATION
Provisioning nodes.
Networking.
Isolation of services.
Self healing.
iOi = Infrastructure on
Infrastructure.
Ǻ
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
DISCOVERY
Find your services and
datasources with minimal code
change.
Versioning of running services.
Automagically update
discovery when services come
and go.
Ǻ
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
SCALING/SCHEDULING
Scale your service (= more
running containers).
Scale your nodes.
Scale your on/off jobs.
Failover groups.
Hybrid infrastructure.
Load balancing.
Ǻ
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
DATA MANAGEMENT
Backup and restores.
Clustering.
Verify your backups.
Ǻ

LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
MONITORING
Get all the statistics of
resources (mem/load/net/res) used.
Aggregating of logs.
Key debugging ingredient.
Ǻ
ǟ
LIFE CYCLE
Ɨǽ
ORCHESTRATION
DISCOVERY
SECURITY
SCALING
DATA
MANAGEMENT
MONITORING
SCHEDULING
SECURITY
Node and Engine level.
Intrusion detection and
prevention systems.
DoS protection.
Firewall.
Segregate container groups
Verification of images.
Ǻ
Ǻ
Choose your platform wisely.
When you get DevOps, Testing,
Microservices architecture right and creating
the right minimal lovable Image and having
the right platform to run containers. Happy
Camper.
ǽ
THANK YOU
www.cloud66.com (free docker in production platform trial)
www.codefresh.com
www.habitus.io (open source docker build flow tool)
startwithdocker.com (easy starter for docker)
https://github.com/cloud66-samples/webinar_codefresh
```
Ɨǽ
Daniël van Gils
Developer Advocate
@foldingbeauty
daniel@cloud66.com
www.cloud66.com
Ad

More Related Content

Viewers also liked (11)

Yesica gomez
Yesica gomezYesica gomez
Yesica gomez
yessigomez852
 
03 A Vectores en el espacio / Vectores unitarios
03 A Vectores en el espacio / Vectores unitarios03 A Vectores en el espacio / Vectores unitarios
03 A Vectores en el espacio / Vectores unitarios
Tareas 911
 
SPOT TV TIM SMART
SPOT TV TIM SMARTSPOT TV TIM SMART
SPOT TV TIM SMART
Enzo Bartalotta
 
Presentación1
Presentación1Presentación1
Presentación1
Mony Fel
 
Director research A2
Director research A2Director research A2
Director research A2
Rabiahussain50
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Daniël van Gils
 
Blockbuster film research
Blockbuster film researchBlockbuster film research
Blockbuster film research
beth sewell
 
Metabolism of Sulfur Containing Amino Acids (Methionine, Cysteine, Cystine)
Metabolism of Sulfur Containing  Amino Acids (Methionine, Cysteine, Cystine)Metabolism of Sulfur Containing  Amino Acids (Methionine, Cysteine, Cystine)
Metabolism of Sulfur Containing Amino Acids (Methionine, Cysteine, Cystine)
Ashok Katta
 
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Ashok Katta
 
Investor presentation march_2017
Investor presentation march_2017Investor presentation march_2017
Investor presentation march_2017
TennantCorporation
 
AWS Lambda
AWS LambdaAWS Lambda
AWS Lambda
Scott Leberknight
 
03 A Vectores en el espacio / Vectores unitarios
03 A Vectores en el espacio / Vectores unitarios03 A Vectores en el espacio / Vectores unitarios
03 A Vectores en el espacio / Vectores unitarios
Tareas 911
 
Presentación1
Presentación1Presentación1
Presentación1
Mony Fel
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Daniël van Gils
 
Blockbuster film research
Blockbuster film researchBlockbuster film research
Blockbuster film research
beth sewell
 
Metabolism of Sulfur Containing Amino Acids (Methionine, Cysteine, Cystine)
Metabolism of Sulfur Containing  Amino Acids (Methionine, Cysteine, Cystine)Metabolism of Sulfur Containing  Amino Acids (Methionine, Cysteine, Cystine)
Metabolism of Sulfur Containing Amino Acids (Methionine, Cysteine, Cystine)
Ashok Katta
 
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Metabolism of Brached Chain Amino Acid (Valine, Isoleucine, Leucine)
Ashok Katta
 
Investor presentation march_2017
Investor presentation march_2017Investor presentation march_2017
Investor presentation march_2017
TennantCorporation
 

Similar to How do I run microservices in production using Docker. (20)

How the hell do I run Docker in production, and will it scale?
How the hell do I run Docker in production, and will it scale?How the hell do I run Docker in production, and will it scale?
How the hell do I run Docker in production, and will it scale?
Daniël van Gils
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Cloud 66
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Katarzyna Hoffman
 
Virtualization and Cloud Computing with Elastic Server On Demand
Virtualization and Cloud Computing with Elastic Server On DemandVirtualization and Cloud Computing with Elastic Server On Demand
Virtualization and Cloud Computing with Elastic Server On Demand
Yan Pritzker
 
Pipeline as code for your infrastructure as Code
Pipeline as code for your infrastructure as CodePipeline as code for your infrastructure as Code
Pipeline as code for your infrastructure as Code
Kris Buytaert
 
Docker presentasjon java bin
Docker presentasjon java binDocker presentasjon java bin
Docker presentasjon java bin
Olve Hansen
 
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and Chef
Gerald Villorente
 
On Failure and Resilience
On Failure and ResilienceOn Failure and Resilience
On Failure and Resilience
Mike Brittain
 
[RHFSeoul2017]6 Steps to Transform Enterprise Applications
[RHFSeoul2017]6 Steps to Transform Enterprise Applications[RHFSeoul2017]6 Steps to Transform Enterprise Applications
[RHFSeoul2017]6 Steps to Transform Enterprise Applications
Daniel Oh
 
Introducing CQ 5.1
Introducing CQ 5.1Introducing CQ 5.1
Introducing CQ 5.1
David Nuescheler
 
Continuous Delivery of (y)our infrastructure.
Continuous Delivery of (y)our infrastructure.Continuous Delivery of (y)our infrastructure.
Continuous Delivery of (y)our infrastructure.
Kris Buytaert
 
Pc54
Pc54Pc54
Pc54
guestd9aa5
 
Online gas booking project in java
Online gas booking project in javaOnline gas booking project in java
Online gas booking project in java
s4al_com
 
Unikernelize your Java Application
Unikernelize your Java ApplicationUnikernelize your Java Application
Unikernelize your Java Application
Mario Žagar
 
From Zero to still Zero: The most beautiful mistakes going into the cloud.
From Zero to still Zero: The most beautiful mistakes going into the cloud. From Zero to still Zero: The most beautiful mistakes going into the cloud.
From Zero to still Zero: The most beautiful mistakes going into the cloud.
OPEN KNOWLEDGE GmbH
 
EuroPython 2019: Modern Continuous Delivery for Python Developers
EuroPython 2019: Modern Continuous Delivery for Python DevelopersEuroPython 2019: Modern Continuous Delivery for Python Developers
EuroPython 2019: Modern Continuous Delivery for Python Developers
Peter Bittner
 
Continuous Deployment: The Dirty Details
Continuous Deployment: The Dirty DetailsContinuous Deployment: The Dirty Details
Continuous Deployment: The Dirty Details
Mike Brittain
 
The Platform Mullet
The Platform MulletThe Platform Mullet
The Platform Mullet
pczarkowski
 
On the Importance of Infrastructure as Code
On the Importance of Infrastructure as CodeOn the Importance of Infrastructure as Code
On the Importance of Infrastructure as Code
Kris Buytaert
 
Icinga Camp Amsterdam - Infrastructure as Code
Icinga Camp Amsterdam - Infrastructure as CodeIcinga Camp Amsterdam - Infrastructure as Code
Icinga Camp Amsterdam - Infrastructure as Code
Icinga
 
How the hell do I run Docker in production, and will it scale?
How the hell do I run Docker in production, and will it scale?How the hell do I run Docker in production, and will it scale?
How the hell do I run Docker in production, and will it scale?
Daniël van Gils
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Cloud 66
 
How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?How the hell do I run my microservices in production, and will it scale?
How the hell do I run my microservices in production, and will it scale?
Katarzyna Hoffman
 
Virtualization and Cloud Computing with Elastic Server On Demand
Virtualization and Cloud Computing with Elastic Server On DemandVirtualization and Cloud Computing with Elastic Server On Demand
Virtualization and Cloud Computing with Elastic Server On Demand
Yan Pritzker
 
Pipeline as code for your infrastructure as Code
Pipeline as code for your infrastructure as CodePipeline as code for your infrastructure as Code
Pipeline as code for your infrastructure as Code
Kris Buytaert
 
Docker presentasjon java bin
Docker presentasjon java binDocker presentasjon java bin
Docker presentasjon java bin
Olve Hansen
 
Consistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and ChefConsistent Development Environment with Vagrant and Chef
Consistent Development Environment with Vagrant and Chef
Gerald Villorente
 
On Failure and Resilience
On Failure and ResilienceOn Failure and Resilience
On Failure and Resilience
Mike Brittain
 
[RHFSeoul2017]6 Steps to Transform Enterprise Applications
[RHFSeoul2017]6 Steps to Transform Enterprise Applications[RHFSeoul2017]6 Steps to Transform Enterprise Applications
[RHFSeoul2017]6 Steps to Transform Enterprise Applications
Daniel Oh
 
Continuous Delivery of (y)our infrastructure.
Continuous Delivery of (y)our infrastructure.Continuous Delivery of (y)our infrastructure.
Continuous Delivery of (y)our infrastructure.
Kris Buytaert
 
Online gas booking project in java
Online gas booking project in javaOnline gas booking project in java
Online gas booking project in java
s4al_com
 
Unikernelize your Java Application
Unikernelize your Java ApplicationUnikernelize your Java Application
Unikernelize your Java Application
Mario Žagar
 
From Zero to still Zero: The most beautiful mistakes going into the cloud.
From Zero to still Zero: The most beautiful mistakes going into the cloud. From Zero to still Zero: The most beautiful mistakes going into the cloud.
From Zero to still Zero: The most beautiful mistakes going into the cloud.
OPEN KNOWLEDGE GmbH
 
EuroPython 2019: Modern Continuous Delivery for Python Developers
EuroPython 2019: Modern Continuous Delivery for Python DevelopersEuroPython 2019: Modern Continuous Delivery for Python Developers
EuroPython 2019: Modern Continuous Delivery for Python Developers
Peter Bittner
 
Continuous Deployment: The Dirty Details
Continuous Deployment: The Dirty DetailsContinuous Deployment: The Dirty Details
Continuous Deployment: The Dirty Details
Mike Brittain
 
The Platform Mullet
The Platform MulletThe Platform Mullet
The Platform Mullet
pczarkowski
 
On the Importance of Infrastructure as Code
On the Importance of Infrastructure as CodeOn the Importance of Infrastructure as Code
On the Importance of Infrastructure as Code
Kris Buytaert
 
Icinga Camp Amsterdam - Infrastructure as Code
Icinga Camp Amsterdam - Infrastructure as CodeIcinga Camp Amsterdam - Infrastructure as Code
Icinga Camp Amsterdam - Infrastructure as Code
Icinga
 
Ad

Recently uploaded (20)

Cybersecurity Tools and Technologies - Microsoft Certificate
Cybersecurity Tools and Technologies - Microsoft CertificateCybersecurity Tools and Technologies - Microsoft Certificate
Cybersecurity Tools and Technologies - Microsoft Certificate
VICTOR MAESTRE RAMIREZ
 
How Top Companies Benefit from Outsourcing
How Top Companies Benefit from OutsourcingHow Top Companies Benefit from Outsourcing
How Top Companies Benefit from Outsourcing
Nascenture
 
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Gary Arora
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
Toru Tamaki
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Dark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanizationDark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanization
Jakub Šimek
 
Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Middle East and Africa Cybersecurity Market Trends and Growth Analysis Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Preeti Jha
 
Right to liberty and security of a person.pdf
Right to liberty and security of a person.pdfRight to liberty and security of a person.pdf
Right to liberty and security of a person.pdf
danielbraico197
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Maarten Verwaest
 
Secondary Storage for a microcontroller system
Secondary Storage for a microcontroller systemSecondary Storage for a microcontroller system
Secondary Storage for a microcontroller system
fizarcse
 
Building a research repository that works by Clare Cady
Building a research repository that works by Clare CadyBuilding a research repository that works by Clare Cady
Building a research repository that works by Clare Cady
UXPA Boston
 
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptxUiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
anabulhac
 
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdfICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
Eryk Budi Pratama
 
DNF 2.0 Implementations Challenges in Nepal
DNF 2.0 Implementations Challenges in NepalDNF 2.0 Implementations Challenges in Nepal
DNF 2.0 Implementations Challenges in Nepal
ICT Frame Magazine Pvt. Ltd.
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Understanding SEO in the Age of AI.pdf
Understanding SEO in the Age of AI.pdfUnderstanding SEO in the Age of AI.pdf
Understanding SEO in the Age of AI.pdf
Fulcrum Concepts, LLC
 
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Christian Folini
 
Cybersecurity Tools and Technologies - Microsoft Certificate
Cybersecurity Tools and Technologies - Microsoft CertificateCybersecurity Tools and Technologies - Microsoft Certificate
Cybersecurity Tools and Technologies - Microsoft Certificate
VICTOR MAESTRE RAMIREZ
 
How Top Companies Benefit from Outsourcing
How Top Companies Benefit from OutsourcingHow Top Companies Benefit from Outsourcing
How Top Companies Benefit from Outsourcing
Nascenture
 
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Harmonizing Multi-Agent Intelligence | Open Data Science Conference | Gary Ar...
Gary Arora
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
論文紹介:"InfLoRA: Interference-Free Low-Rank Adaptation for Continual Learning" ...
Toru Tamaki
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Dark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanizationDark Dynamism: drones, dark factories and deurbanization
Dark Dynamism: drones, dark factories and deurbanization
Jakub Šimek
 
Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Middle East and Africa Cybersecurity Market Trends and Growth Analysis Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Middle East and Africa Cybersecurity Market Trends and Growth Analysis
Preeti Jha
 
Right to liberty and security of a person.pdf
Right to liberty and security of a person.pdfRight to liberty and security of a person.pdf
Right to liberty and security of a person.pdf
danielbraico197
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Limecraft Webinar - 2025.3 release, featuring Content Delivery, Graphic Conte...
Maarten Verwaest
 
Secondary Storage for a microcontroller system
Secondary Storage for a microcontroller systemSecondary Storage for a microcontroller system
Secondary Storage for a microcontroller system
fizarcse
 
Building a research repository that works by Clare Cady
Building a research repository that works by Clare CadyBuilding a research repository that works by Clare Cady
Building a research repository that works by Clare Cady
UXPA Boston
 
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptxUiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
UiPath AgentHack - Build the AI agents of tomorrow_Enablement 1.pptx
anabulhac
 
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdfICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
ICDCC 2025: Securing Agentic AI - Eryk Budi Pratama.pdf
Eryk Budi Pratama
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Understanding SEO in the Age of AI.pdf
Understanding SEO in the Age of AI.pdfUnderstanding SEO in the Age of AI.pdf
Understanding SEO in the Age of AI.pdf
Fulcrum Concepts, LLC
 
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Crazy Incentives and How They Kill Security. How Do You Turn the Wheel?
Christian Folini
 
Ad

How do I run microservices in production using Docker.