vault backup: 2024-09-08 01:58:27f

This commit is contained in:
hexlocation 2024-09-08 01:58:27 +02:00
commit a4183a1970
15 changed files with 45942 additions and 0 deletions

19
docker/docker.md Normal file
View file

@ -0,0 +1,19 @@
# Docker Cheatsheet
### Run interactive, temporary container
```
docker run --rm -it alpine
```
### Kill container
```
docker kill [service]
```
### Remove container
```
docker rm [service]
```