Skip to content

Instantly share code, notes, and snippets.

@dazeb
Last active April 20, 2024 21:50
Show Gist options
  • Select an option

  • Save dazeb/4863fba5ba40376cb097aa99fd782232 to your computer and use it in GitHub Desktop.

Select an option

Save dazeb/4863fba5ba40376cb097aa99fd782232 to your computer and use it in GitHub Desktop.
Docker Commands

Docker Base-Commands

docker ps  # current containers  
docker run  # create and start the container  
docker create  # create container  
docker exec  # to run commands in container for once  
docker volume  # create a docker volume  
docker network  # create a docker network  
docker rm  # remove container   
docker images  # list the images  
docker rmi  # remove image  
docker build  # build a new image from dockerfile  
docker push  # push your image to docker repo  
docker pull  # download an image from docker repo  
docker commit  # create an image from container  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment