I’m looking to create an image gallery, to show images I have taken. Is there any software that would be great for this? I am open to any suggestions.
Would prefer if this was:
I am looking for something similar to this: kaiser.gallery
I have tried out creating this through Ghost, Grav and have previous experience with WordPress (Too bulky, with many unneeded features).
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don’t control.
Rules:
Be civil: we’re here to support and learn from one another. Insults won’t be tolerated. Flame wars are frowned upon.
No spam posting.
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it’s not obvious why your post topic revolves around selfhosting, please include details to make it clear.
Don’t duplicate the full text of your blog or github here. Just post the link for folks to click.
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
No trolling.
Resources:
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
fgallery
TL;DR:
fgallery
is a dumb static web gallery generator: EXAMPLE, SETUP.There’s fgallery which is a small Debian package that takes an input directory (e.g.
photo-dir
) and creates a static website in a new directory (e.g.my-gallery
).Description
From the Debian package details page.
Among all the Debian packages similar to this one, this seems the most recently maintained (version 1.9.1 came out 2022-12-31). It is licensed GPLv2+ so the source code is available.
Upload to a web server
After running
fgallery
as described above, uploadmy-gallery
to your static web page directory (e.g./var/www/html/
with a typicalapache2
setup) and open theindex.html
through a web browser.Here’s an example gallery I made just now (setup procedure).
( Photo by Baltakatei / 🅭🅯🄎 4.0 )
Viewing locally with a browser
To view the gallery locally without uploading to a web server (e.g. a Digital Ocean droplet) or static content hosting service (e.g. AWS S3), you can do so with your own web browser. However, because the
fgallery
webpage uses Javascript and since modern browsers refuse to render Javascript in HTML pages at local file system addresses (e.g.file:///
) due to same-origin policy, the easiest solution is to make a simple webserver via python3:Then, you can visit the
my-gallery/index.html
file via a localhttp://
address athttp://localhost:8000/
.Summary
fgallery
lacks many complex features (no image database, no metadata editing, no dynamic server processes for editing images, etc.). However, I’d argue its lack of features is the main feature. It just takes a directory of photos and spits out a directory you can plug into your hosting service. Updating the the gallery is just a matter of running the same$ fgallery photo-dir my-gallery
command again and re-uploading.Edit(2023-07-07T12:05+00): Clarify python3 commend.
TL;DR:
fgallery
is a dumb static web gallery generator: EXAMPLE, SETUP.This looks like the best option I’ve seen so far. Looks super easy to use. Thanks!