diff --git a/specs/docker/list_docker_images_from_local.yaml b/specs/docker/list_docker_images_from_local.yaml new file mode 100644 index 00000000..fc238743 --- /dev/null +++ b/specs/docker/list_docker_images_from_local.yaml @@ -0,0 +1,10 @@ +--- +name: List docker images from local system +command: docker image ls +tags: + - docker +description: Lists all docker images currently stored on your system +source_url: "https://docs.docker.com/engine/reference/commandline/image_ls/" +author: guel-codes +author_url: "https://github.com/guel-codes" +shells: [] diff --git a/specs/docker/remove_docker_images_from_local.yaml b/specs/docker/remove_docker_images_from_local.yaml new file mode 100644 index 00000000..e67574b4 --- /dev/null +++ b/specs/docker/remove_docker_images_from_local.yaml @@ -0,0 +1,14 @@ +--- +name: Remove docker images from local system +command: docker rmi {{image_id}} +tags: + - docker +description: Remove docker images currently stored on your system +arguments: + - name: image_id + description: The container ID of the docker container. + default_value: ~ +source_url: "https://docs.docker.com/engine/reference/commandline/rmi/" +author: guel-codes +author_url: "https://github.com/guel-codes" +shells: []