Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 934 Bytes

photostructure.md

File metadata and controls

38 lines (31 loc) · 934 Bytes

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.)

docker-compose.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

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