@one-eyed-king
Here's my docker-compose, things of note (for anyone reading)
I've created a network (called synology) within docker, so that I can specify that network to be allowed through the firewall.
Obviously, $PUID and $PGID are either configured by your .env or you need to specify them.
Also change the ports (if you want).
Finally, my containers are on my SSD cluster and not my HDD, anything I store goes on the "spinners" and anything I run goes on the "solid".
Code:
version: "3.5"
services:
organizr:
image: organizr/organizr:latest
container_name: organizr
ports:
- 7001:433
- 7000:80
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=Europe/London
- branch=v2-master
volumes:
- "/volume2/docker/organizr:/config"
networks:
- synology
restart: always
networks:
synology:
external: true
What else would you like to know about it?
@Telos
Of note I've mounted the /config/www on my spinners as that's where the pictures are stored.
If you want to include video:
Code:
https://piwigo.org/ext/extension_view.php?eid=610
That needs to be extracted to your /www/gallery/plugins directory and then enabled in the interfact.
Also at that point it's worth adding LocalFileEditor plugin as well, (as per this page)
Code:
https://github.com/xbgmsharp/piwigo-videojs/wiki/How-to-add-videos
change the line from:
$conf['upload_form_all_types'] = false;
to
$conf['upload_form_all_types'] = true;
Code:
version: "2.1"
services:
piwigo:
image: ghcr.io/linuxserver/piwigo
container_name: photos
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=Europe/London
volumes:
- /volume2/docker/piwigo:/config
- /volume1/pictures:/config/www
ports:
- 2342:80
networks:
- synology
restart: always
networks:
synology:
external: true