eolas/neuron/3962ef80-32e3-49b8-8e16-d14a26e9787a/Docker_CLI.md

26 lines
264 B
Markdown
Raw Normal View History

2024-10-19 11:00:03 +01: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
```