eolas/neuron/33315529-fcad-4fb2-a939-4232f28ae487/Docker_CLI.md

26 lines
264 B
Markdown
Raw Normal View History

2024-11-17 15:37:31 +00:00
---
id: 6g54
tags:
- docker
- shell
created: Saturday, March 30, 2024
---
# Docker CLI
```sh
# List images
docker image ls
# List container
docker container ls
# Remove container
docker rm container-name
# Remove image
docker rmi image_name:version
```