Yashraj Singh Sisodiyatheyashsisodiya.hashnode.dev·Feb 15, 2024Day 19: Docker Cheat-sheetGeneral Usage Start a container in the background: $ docker run -d jenkins Start an interactive container: $ docker run -it ubuntu bash Export port from a container: $ docker run -p 80:80 -d nginx Start a named container: $ docker run ...35 readsGeneral Usage