-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker commands #3
Comments
Related to containers: List running containers: List all containers: Access a running container: Remove all stopped containers: Delete all running and stopped containers: Start a stopped container: Restart (stop + start) the container: Rename a container: Show all modified files in a container: |
Related to the system and volumes: Clean the system (meta images and stopped containers): Remove volumes: |
Publishing Container to Quay Login to Quay.io
Get your containerID
Tag that container by containerId
Now publish it to Quay.io
|
Pull image
docker pull <imageName>
Build an image from a specified docker file:
docker build <path to the dockerfile>
List all images:
docker images
Remove an image:
docker rmi <imageID>
Save an image into a tar file:
docker save <imageName> > <tarFile>
Load an Image from a tar file:
docker load -i <tarFile>
The text was updated successfully, but these errors were encountered: