Piwigo is a photo gallery software for the web that comes with powerful features to publish and manage your collection of pictures. Piwigo is open source and is designed for organizations, teams and individuals. In this step by step guide I will show you how to install Piwigo on your Synology NAS using Docker.
STEP 1
Please Support My work by Making a Donation.
STEP 2
Install Portainer using my step by step guide. If you already have Portainer installed on your Synology NAS, skip this STEP. Attention: Make sure you have installed the latest Portainer version.
STEP 3
Go to File Station and open the docker folder. Inside the docker folder, create two new folders and name one piwigo and the other one piwigodb. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.
STEP 4
Log into Portainer using your username and password. On the left sidebar in Portainer, click on Stacks then + Add stack. Follow the instructions in the image below.
STEP 5
In the Name field type in piwigo. Follow the instructions in the image below.
version: "2.1" services: piwigo: image: ghcr.io/linuxserver/piwigo container_name: Piwigo environment: - PUID=1026 - PGID=100 - TZ=Europe/Bucharest volumes: - /volume1/docker/piwigo:/config - /volume1/web/gallery:/gallery ports: - 8633:80 restart: always db: image: mysql container_name: Piwigo-DB restart: always environment: MYSQL_ROOT_PASSWORD: piwigo MYSQL_DATABASE: piwigo MYSQL_USER: piwigo MYSQL_PASSWORD: piwigo volumes: - /volume1/docker/piwigodb:/var/lib/mysql
Note: After you paste the code above in the Web editor, change the value numbers for PUID and PGID with your own values. (Follow my step by step guide on how to do this.)
Note: After you paste the code above in the Web editor, change the value for TZ. (Select your current Time Zone from this list.)
Note: in the code above after – /volume1/docker/piwigo:/config you have to add your personal path to gallery. For example I have used my personal gallery path folder – /volume1/web/gallery:/gallery Change it according to your preferences. – /path/toyour/gallery:/gallery
STEP 6
Scroll down on the page until you see a button named Deploy the stack. Click on it. Follow the instructions in the image below. The installation process can take up to a few minutes. It will depend on your Internet speed connection.
STEP 7
If everything goes right, you will see this message at the top right of your screen: “Success Stack successfully deployed“.
STEP 8
Go back to STEP 1 or you will deal with karma 🙂
STEP 9
The installation process can take up to a few seconds/minutes. It will depend on your Internet speed connection. Now open your browser and type in http://Synology-ip-address:8633 Select your Default gallery language then add the following data:
- On the Host field type in: Piwigo-DB
- On the User field type in: piwigo
- On the Password field type in: piwigo
- On the Database field type in: piwigo
Add your own username, password and email then click Start installation. Follow the instructions in the image below.
STEP 10
Click visit the gallery. Follow the instructions in the image below.
STEP 11
After some seconds open your browser and type in http://Synology-ip-address:8633/admin.php Follow the instructions in the image below.
STEP 12
Start using Piwigo. Create your first album. Follow the instructions in the image below.
STEP 13
START uploading your photos!
Your Piwigo administration page will look like this. I have to admit that Piwigo has a very clean and user friendly interface!
STEP 14 Run Container via HTTPS
Note: If you want to run the Piwigo container over an HTTPS connection, check out my guide on How to Run Docker Containers Over HTTPS.
Note: Find out how to update the Piwigo container with the latest image.
Note: Can I run Docker on my Synology NAS? See the supported models.
Note: How to Free Disk Space on Your NAS if You Run Docker.
Note: How to Schedule Start & Stop For Docker Containers.
Note: How to Activate Email Notifications.
Note: How to Add Access Control Profile on Your NAS.
Note: How to Change Docker Containers Restart Policy.
Note: How to Use Docker Containers With VPN.
Note: Convert Docker Run Into Docker Compose.
Note: How to Clean Docker.
Note: How to Clean Docker Automatically.
Note: Best Practices When Using Docker and DDNS.
Note: Some Docker Containers Need WebSocket.
Note: Find out the Best NAS Models For Docker.
Note: Activate Gmail SMTP For Docker Containers.
This post was updated on Thursday / May 25th, 2023 at 2:01 PM