Docker image for the fussel static gallery generator.
50K+
Fussel is a static photo gallery generator. It can build a simple static photo gallery site with nothing but a directory full of photos.
Features and Properties:
![]() | ![]() |
|---|---|
![]() | ![]() |

pip install -r requirements.txtcd webyarn installcd ../.env.example to .env.env to your needs (minimal change is to set INPUT_PATH)The folder you point INPUT_PATH at, must have albums in subfolders inside it with the folder names as the name of the albums you want in the gallery. Any further-nested folders will be ignored.
If you have your .env setup with:
INPUT_PATH = /home/user/Photos/gallery
Then that path should look like this:
/home/user/Photos/gallery:
- Album 1
- Album 2
- Album 3
- ...
Run the following script to generate your site into web/build folder.
./generate_site.shPoint your web server at web/build or copy/upload the web/build folder to your web host HTTP root.
After running generate_site.sh
python -m http.server --directory web/build (go to localhost:8000 in browser)cd webyarn startIf you don't want to fuss with anything and would like to use docker instead fo generate your site...
Required:
/my-input-folder is the absolute path to top-level photo folder/my-output-folder is the absolute path to where you want the generated site written toNote: The two -e env variables PGID and PUID tells the container what to set the output folder permissions to once done. Otherwise it is set to root permissions
docker run \
-e PGID=$(id -g) \
-e PUID=$(id -u) \
-v /my-input-folder:/input:ro \
-v /my-output-folder:/fussel/web/build \
cbenning/fussel:latest
Optional:
You can provide any value found in the .env.sample file in a docker env variable using -e MYVAR=THING
docker run \
-e PGID=$(id -g) \
-e PUID=$(id -u) \
-v /my-input-folder:/input:ro \
-v /my-output-folder:/fussel/web/build \
-e HTTP_ROOT=/my/alternate/path \
-e WATERMARK_ENABLE=false \
cbenning/fussel:latest
Once complete you can upload the output folder to your webserver, or see what it looks like with
python -m http.server --directory /my-output-folder
Content type
Image
Digest
Size
89.4 MB
Last updated
over 5 years ago
docker pull cbenning/fussel