how to stop the schaissn

This commit is contained in:
aaron
2021-11-23 14:52:18 +01:00
parent c8d681736e
commit 7e0da31e66

View File

@@ -7,3 +7,9 @@ $ docker build $repo -t lasttest
for i in $(seq 1 100):
docker run -d -p 5800 lasttest
```
## Oh no i have xyz images running - how to stop?
```bash
$ docker rm --force $(docker ps --filter="ancestor=lasttest" --format="{{.ID}}")
```