Skip to content

Latest commit

 

History

History

README.md

Docker Commands

  • Build: docker build.
  • Add tag: docker tag [image ID] [image name]
  • Run: docker run --name [container name] -p 5000:80 [image name]

Other Commands

  • Stop Container: docker stop [container name]
  • Remove Container: docker rm [container name]
  • List all containers: docker ps -a
  • List all running containers: docker ps