This commit is contained in:
aaron
2021-11-23 16:26:58 +01:00
parent 881894e2ed
commit e14327c704

View File

@@ -1,4 +1,11 @@
# dockerized interdiscount test # Dockerized test for the interdiscount waiting queue
## Whut?
- This container simulates user accesses via the tor network.
- A web-ui is available on the containers exposed port.
## How to build and run?
```bash ```bash
$ git clone $repo $ git clone $repo
@@ -7,12 +14,14 @@ $ docker build $repo -t lasttest
# start some browsers # start some browsers
for i in $(seq 1 100): for i in $(seq 1 100):
docker run -d -p 5800 lasttest docker run -d -p 5800 lasttest
```
Or simply use the deploy script. # Or simply use the deploy script.
```
## Oh no I have xyz containers running - how to stop them? ## Oh no, now I have xyz randomly named containers running - how to stop
them?
```bash ```bash
$ docker rm --force $(docker ps --filter="ancestor=lasttest" --format="{{.ID}}") $ docker rm --force $(docker ps --filter="ancestor=lasttest"
``` --format="{{.ID}}")
```