"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.)
---
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
If docker-compose logs
show permission access errors, changing permissions to the generated folders may be required:
sudo chmod -R 777 config cache library logs photos