16 lines
298 B
Markdown
16 lines
298 B
Markdown
# dockerized interdiscount test
|
|
|
|
```bash
|
|
$ git clone $repo
|
|
$ 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}}")
|
|
```
|