This is a small web application to inspect images for timelapses.
Just throw your images into a folder, fire up the container and view your images:
- ASP.NET Core 8 (minimal api), xUnit, NSubstitute
- React
docker build -t gallery .
version: '3.3'
services:
gallery:
image: gallery
container_name: gallery
restart: always
volumes:
- "/home/someuser/galleries:/galleries:ro"
environment:
- GalleryOptions:GalleryPath=/galleries
ports:
- 8080:8080