Parminder Singh
Lead UI Engineer @ Swiggy
"Docker is the only independent container platform that enables organizations to seamlessly - build, share and run any application, anywhere"
Build, Ship and Run
"Docker is the only independent container platform that enables organizations to seamlessly - build, share and run any application, anywhere"
Build, Ship and Run
Build, Ship and Run
Docker Inc
Containers
Docker Objects
Images
Containers
docker run -it -p 3000:3000 -v ${PWD}/src:/app/src image-name
version: '3'
services:
server:
build: ./
ports:
- 5000:5000
volumes:
- ./server/src:/server/src
@paramsingh_66174