Create a directory index for each subfolder including the current one and excluding hidden ones.
To build the image, you can run the following command:
docker build -t directory_index .You can mount a desired volume at /app and simply run something like:
docker run --rm -it -v$(pwd):/app directory_indexYou can also specify a particular path (for example if you want to run it in /app/special):
docker run --rm -it -v$(pwd):/app directory_index /etc/specialThis program is free software and is distributed under AGPLv3+ License.