diff --git a/README.md b/README.md
index 6184111..51b830b 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/apps/photos/comparison.md b/apps/photos/comparison.md
index 69435c4..73cde50 100644
--- a/apps/photos/comparison.md
+++ b/apps/photos/comparison.md
@@ -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 | ✅ | ✅ | ✅ |
diff --git a/apps/photos/photostructure.md b/apps/photos/photostructure.md
new file mode 100644
index 0000000..3fdbff0
--- /dev/null
+++ b/apps/photos/photostructure.md
@@ -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.)
+
+
+
+
+- [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
+```
diff --git a/apps/photos/pigallery.md b/apps/photos/pigallery.md
new file mode 100644
index 0000000..2c09258
--- /dev/null
+++ b/apps/photos/pigallery.md
@@ -0,0 +1,34 @@
+# Pigallery2
+
+- Decent design & UX
+- Good support for photo and video files
+- Lots of additional features (map, faces, sharing, etc.)
+
+
+
+- [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*