pigallery & photo structure

This commit is contained in:
Tomasz Borychowski 2021-02-21 21:16:36 +00:00
parent c7529fdd98
commit f94fdee733
4 changed files with 78 additions and 9 deletions

View File

@ -228,11 +228,13 @@ So, without further ado, here's the current list:
# Photos
- [Comparison table](apps/photos/comparison.md)
- [PhotoPrism](apps/photos/photoprism.md)
- [PhotoView](apps/photos/photoview.md)
- [LibrePhotos](apps/photos/libre-photos.md)
- [Pigallery2](apps/photos/pigallery.md)
- [Piwigo](apps/photos/piwigo.md)
- [Pixelfed](apps/photos/pixelfed.md)
- [LibrePhotos](apps/photos/libre-photos.md)
- [PhotoPrism](apps/photos/photoprism.md)
- [PhotoStructure](apps/photos/photostructure.md)
- [PhotoView](apps/photos/photoview.md)
### Other tested
- [Chevereto](https://chevereto.com/) 🔗 - quite nice. No video support.
@ -243,8 +245,6 @@ So, without further ado, here's the current list:
- [FileStash](https://github.com/mickael-kerjean/filestash) 🔗 - old-time-dropbox-like file manager.
### Untested
- [pigallery2](https://github.com/bpatrik/pigallery2) 🔗 - minimal feats
- [photostructure](https://photostructure.com/) 🔗 - too early
- [picapport](https://www.picapport.de/en/index.php) 🔗 - weird
# Project Management

View File

@ -3,13 +3,15 @@
| App | UI | Users | Album Sharing | Comments | UI upload | Video support |
|------------------------|-----------|------------|----------------------------|----------|-----------|----------------------------------------|
| Chevereto | ⭐️⭐️⭐️⭐️⭐️ | ✅ | permissions, passwords | probably | ✅ | ⛔️ |
| LibrePhotos | ⭐️ | ✅ | links, passwords | ⛔️ | ⛔️ | ⛔️ |
| NextCloud Photos | ⭐️⭐️⭐️⭐️ | ✅ | links, passwords | ✅ | ✅ | ✅ |
| Lychee | ⭐️⭐️⭐️⭐️⭐️ | ⛔️ | links, passwords | ⛔️ | ✅ | ⛔️ |
| Pigallery2 | ⭐️⭐️⭐️⭐️ | ✅ | users, links with password | ⛔️ | ⛔️ | ✅ |
| Piwigo | ⭐️⭐️ | ✅ | user/group permissions | ✅ | ✅ | mp4, m4v, webm, webmv |
| PixelFed | ⭐️⭐️⭐️⭐️ | ✅ | | ✅ | ✅ | ⛔️ |
| PhotoPrism | ⭐️⭐️⭐️⭐️ | admin only | unique links | ⛔️ | ✅ | allow up/down, but displays thumb only |
| Chevereto | ⭐️⭐️⭐️⭐️⭐️ | ✅ | permissions, passwords | probably | ✅ | ⛔️ |
| Lychee | ⭐️⭐️⭐️⭐️⭐️ | ⛔️ | lilnks, passwords | ⛔️ | ✅ | ⛔️ |
| PhotoStructure | ⭐️⭐️⭐️⭐️ | ⛔️ | ⛔️ | ⛔️ | ⛔️ | ✅ |
| PhotoView | ⭐️⭐️ | ✅ | unique links with password | ⛔️ | ⛔️ | ✅ |
| NextCloud Photos | ⭐️⭐️⭐️⭐️ | ✅ | links, passwords | ✅ | ✅ | ✅ |
| LibrePhotos | ⭐️ | ✅ | links, passwords | ⛔️ | ⛔️ | ⛔️ |
| Synology Moments | ⭐️⭐️⭐️⭐️ | ✅ | links | ⛔️ | ✅ | ✅ |
| Synology Photo Station | ⭐️⭐️⭐️ | ✅ | links, passwords | ✅ | ✅ | ✅ |

View File

@ -0,0 +1,33 @@
# PhotoStructure
*"Your new home for all your photos & videos"*
- Very good looking
- Good support for photo and video files
- Still in early development, so limited features (no accounts, sharing, etc.)
<br>
- [Homepage](https://photostructure.com/)
- [Docs for Docker](https://photostructure.com/server/photostructure-for-docker-compose/)
- [Desktop version](https://photostructure.com/install/)
## docker-compose.yml
```yml
---
version: "3.7"
services:
photostructure:
image: photostructure/server
restart: unless-stopped
stop_grace_period: 2m
ports:
- 1787:1787/tcp
volumes:
- ./library:/ps/library
- ./cache:/ps/tmp
- ./config/:/ps/config
- ./logs:/ps/logs
- /mnt/photos:/photos
```

34
apps/photos/pigallery.md Normal file
View File

@ -0,0 +1,34 @@
# Pigallery2
- Decent design & UX
- Good support for photo and video files
- Lots of additional features (map, faces, sharing, etc.)
<br>
- [Homepage](http://bpatrik.github.io/pigallery2/)
- [Github repo](https://github.com/bpatrik/pigallery2)
- [Demo](https://pigallery2.herokuapp.com/gallery/)
## docker-compose.yml
```yml
---
version: '3'
services:
pigallery2:
image: bpatrik/pigallery2:latest
container_name: pigallery2
environment:
- NODE_ENV=production
volumes:
- ./db:/app/data/db
- ./data/config:/app/data/config
- ./data/tmp:/app/data/tmp
- ./data/images:/app/data/images
ports:
- 3000:80
restart: unless-stopped
```
And login with *admin*:*admin*