polyglot experience, focus on Web & Cloud • StackOverflow: 70,000+ score (Top 5 in Pakistan) • Author / Contributor of multiple famous libraries & tools • Featured on popular developer communities
applications and environments" • Docker Image: • Set of commands describing how to run your app • Docker Container: • Your commands executed • Can run anywhere
my-app:v1 . # Run the app docker run -it -p 5000:5000 my-app:v1 # Run for different envs docker run -it my-app:v1 --env-file stage.env docker run -it my-app:v1 --env-file prod.env