Docker
How to use goshs with docker
There is an official goshs image at the Docker Hub. You can pull the image:
docker pull patrickhener/goshsAnd then use it like:
docker run --rm -it -p 8000:8000 -v "$PWD:/pwd" patrickhener/goshs:latest -d /pwd Info
Make sure to point -v to the directory you want to expose and to fit -p if you are changing the default port for goshs to be able to work correctly.
Warning
Uploaded files will be uploaded to /root in the docker container and therefore not be accessible while using the docker container, unless you specify -uf /pwd and match the folder specified with -d.