Previous slide
Next slide
Toggle fullscreen
Open presenter view
Containerization and Docker
Work In Progress
A Brief History of Your Application (Dependency Hell)
Lets say you built a two different web applications with python 3.8 and you want to deploy it to a single server.
What do you need to do?
Install python 3.8
Install required packages
Install web server (Maybe?)
Write a script to run your application
Run your script and hope it works
Also, another day you built another application with python 3.9 and you want to deploy it to the same server.
What will happen?
A Brief History of Your Application (Isolation)
Lets say you have two different applications A and B.
But application A has a bug and deletes all the files in the server.
What will happen to application B?