Search for Docker Hub images (** search ) Get the image you want to use from Docker Hub ( pull ) Create a container from the image and start it ( run ) Command execution in container ( exec ) Stop the container ( stop ) Image container ( commit ) Delete the container when you no longer need it ( rm ) Delete the image when you no longer need it ( rmi **)
Other commands
List of acquired images (** images ) List of running containers ( ps ) List of all containers including stopped ( ps -a ) Start a stopped container ( start ) File copy between host and container ( cp **)
Recommended Posts