runall/README.md

10 lines
372 B
Markdown
Raw Permalink Normal View History

2021-01-27 17:35:19 +00:00
**Warning:** Starting the _runall.py_ script directly can severely damage your system by running random Bash commands. Please start it in a container as described below.
2021-01-26 21:36:26 +00:00
How to run:
```
docker image build --quiet --tag runall-image .
2021-01-27 18:20:56 +00:00
mkdir output
2021-01-27 19:16:31 +00:00
docker container run --tty --rm --mount type=bind,src="$(realpath output)",dst=/root/output --memory=128m runall-image
2021-01-26 21:36:26 +00:00
```