Organize your digital media with a powerful, open source photo management solution. Built to handle high-volume libraries, it excels at classifying thousands or even hundreds of thousands of photos without issue. As a project that has been evolving for over two decades, it offers a stable and sustainable platform for your valuable memories and professional assets.
The true strength lies in its flexibility and community-driven nature. Key benefits include:
services:
piwigo:
image: lscr.io/linuxserver/piwigo:latest
container_name: piwigo
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./piwigo-config:/config
- ./piwigo-gallery:/gallery
ports:
- 80:80
restart: unless-stopped
depends_on:
- mariadb
mariadb:
image: lscr.io/linuxserver/mariadb:latest
container_name: mariadb
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=piwigo
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
volumes:
- ./db-data:/config
restart: unless-stoppedMYSQL_ROOT_PASSWORD=your_super_secret_root_password
MYSQL_USER=piwigo
MYSQL_PASSWORD=your_super_secret_db_passwordAuto-fetched 16 minutes ago
Auto-fetched 16 minutes ago