cheatsheets/docker/docker.md

20 lines
222 B
Markdown
Raw Permalink Normal View History

2024-09-08 01:58:27 +02:00
# Docker Cheatsheet
### Run interactive, temporary container
```
docker run --rm -it alpine
```
### Kill container
```
docker kill [service]
```
### Remove container
```
docker rm [service]
```