Files
docker_torbrowser/README.md
2021-11-23 16:45:17 +01:00

561 B

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?

$ git clone $repo
$ docker build $repo -t lasttest

# start some browsers
for i in $(seq 1 100):
  docker run -d -p 5800 lasttest
# Or simply use the deploy script.

Oh no, now I have xyz randomly named containers running - how to stop them?

$ docker rm --force $(docker ps --filter="ancestor=lasttest"
--format="{{.ID}}")