I'm using monolith in docker container and followed your installation instructions. But when I run this:
docker run --rm y2z/monolith https://web.de -o webde.html
I'm getting no file written at all on my local disk because the docker container has no volume ($PWD) mounted 😞
This can be fixed by this:
docker run --rm -v "$PWD:/mnt" y2z/monolith https://web.de -o /mnt/webde.html