Go to file
Stefan Forstenlechner 80f11b2539
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s Details
Build and publish docker image snapshot / build-and-publish (push) Has been cancelled Details
Navigation is allowed to all folders
regardless of if images are contained in a folder

Some cleanup is not done yet. See TODO
2024-08-20 23:02:23 +02:00
.gitea/workflows minor changes in docker-snapshot.yaml 2024-08-19 21:41:55 +02:00
picture-gallery-client Navigation is allowed to all folders 2024-08-20 23:02:23 +02:00
picture-gallery-server Revert back to react-photo-album and improve FolderGallery 2024-08-20 22:39:42 +02:00
public Revert back to react-photo-album and improve FolderGallery 2024-08-20 22:39:42 +02:00
.dockerignore Add some sensible sorting 2022-05-26 23:05:48 +02:00
.gitignore integrate lighthouse 2022-08-08 17:34:32 +02:00
Dockerfile Update/fix docker build 2024-08-19 19:18:58 +02:00
README.md Update/fix docker build 2024-08-19 19:18:58 +02:00
package.json update server versions 2024-08-12 12:18:53 +02:00

README.md

Simple Picture Gallery

Getting Started

Information

Folders should only contain images and folders. Folders should not contain any other files.

Docker

docker build . -t simple-picture-gallery
docker run -p 3005:3001 -v /mnt/data/pictures:/usr/src/app/public --name my-picture-gallery simple-picture-gallery

Customization

Create an environment file .env:

VITE_TITLE=My Gallery
VITE_APPBAR_COLOR=#F8AB2D

Other properties:

VITE_FAVICON_HREF=<URL to your favicon>

And run docker with --env-file .env

docker run -p 3005:3001 -v C:/DATA/temp/bla:/usr/src/app/public --env-file .env --name my-picture-gallery simple-picture-gallery