mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			934 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			934 B
		
	
	
	
	
	
	
	
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