Autosave: 2024-03-30 14:50:04

This commit is contained in:
thomasabishop 2024-03-30 14:50:04 +00:00
parent 898517c10e
commit caf07a4dd3
2 changed files with 24 additions and 0 deletions

Binary file not shown.

24
zk/Docker_CLI.md Normal file
View file

@ -0,0 +1,24 @@
---
id: 6g54
title: Docker_CLI
tags: []
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
```