mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			711 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			711 B
		
	
	
	
	
	
	
	
Piwigo
- Has mobile app
 - Some video support
 - Quite complex to manage, but also pretty powerful
 
docker-compose.yml
---
version: "2"
services:
  piwigo:
    image: linuxserver/piwigo
    container_name: piwigo
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Dublin
    depends_on:
      - db
    ports:
      - 3060:80
    volumes:
      - ./config:/config
  db:
	image: mariadb
    restart: unless-stopped
    environment:
        - MYSQL_ROOT_PASSWORD=piwigo
        - MYSQL_DATABASE=piwigo