Thanks to this topic and everyone, I installed MariaDB and Piwigo. I choose to go with two different stack, maybe I'll use DB for other reasons also. by the way I don't know why but when I install mariadb with admin account it doesn't connect. I had to install with root account.
anyway now it worked but I wanted to ask is there posibility to add/link my local share folder to piwigo. Because I use these share for many reasons.
I tried many things with no solution.
- /srv/dev-disk-by-uuid-3704a8bb-6859-491c-852a-ceb7189f0ed4/Dockers/piwigo:/config ##this is the omv shared folders for Docker config files
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/gallery ##this is the omv shared folders absolute path to where you have your media
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/galleries ##this is the omv shared folders absolute path to where you have your media
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/pictures
The only thing I didn't try is ;
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/config ##this is the omv shared folders for Docker config files
I want to keep my config files at the same folder.
services:
piwigo:
image: linuxserver/piwigo
container_name: piwigo
environment:
- PUID=998 ##change to your user id. It cannot be the root user
- PGID=100 ##change to your user group ID
- TZ=Europe/Istanbul
volumes:
- /srv/dev-disk-by-uuid-3704a8bb-6859-491c-852a-ceb7189f0ed4/Dockers/piwigo:/config ##this is the omv shared folders for Docker config files
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/gallery ##this is the omv shared folders absolute path to where you have your media
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/galleries ##this is the omv shared folders absolute path to where you have your media
- /srv/mergerfs/TASLIEL/TASLIEL/Fotograflar:/pictures
ports:
- 7777:80
restart: unless-stopped
mariadb:
image: linuxserver/mariadb
container_name: piwidb
environment:
- PUID=998 ##change to your user id. I use root since I am on a closed system
- PGID=100 ##change to your user group ID. Again I use root since I am on a closed system
- MYSQL_ROOT_PASSWORD=PASSWORD ##set a password
- TZ=Europe/Istanbul
- MYSQL_DATABASE=piwigo
- MYSQL_USER=piwigo
- MYSQL_PASSWORD=piwigo
volumes:
- /srv/dev-disk-by-uuid-3704a8bb-6859-491c-852a-ceb7189f0ed4/Dockers/MariaDB:/config ##point this to your omv5 shared folders absolute path
ports:
- 3306:3306
restart: unless-stopped
Display More
Thanks for your help.
I just found on piwigo topic smth. like
"It sounds like you want to use Piwigo for asset management."
but maybe it changed in two years I don't want to change my folder/file structure wich I got use to. I just want to add tags and search easy like in old good friend picasa.