1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00

add piwigo

This commit is contained in:
kev 2024-09-09 16:15:20 +08:00
parent 4f48acf066
commit 6d8690cab2
3 changed files with 26 additions and 4 deletions

View File

@ -322,7 +322,6 @@ A collection of delicious docker recipes.
- [x] 3proxy/3proxy
- [x] adguard/adguardhome
- [x] ghcr.io/linuxserver/airsonic :musical_note:
- [x] apify
- [x] actor-node
- [x] actor-node-playwright
@ -391,7 +390,6 @@ A collection of delicious docker recipes.
- [x] hivemq/hivemq-ce
- [x] homeassistant/home-assistant
- [x] h2non/imaginary
- [x] linuxserver/jackett
- [x] jellyfin/jellyfin
- [x] jenkins
- [x] inbound-agent
@ -405,10 +403,15 @@ A collection of delicious docker recipes.
- [x] ipfs/kubo
- [x] heartexlabs/label-studio
- [x] martialblog/limesurvey
- [x] linuxserver
- [x] airsonic :musical_note:
- [x] jackett
- [x] mastodon
- [x] piwigo
- [x] wireguard
- [x] ghcr.io/ggerganov/llama.cpp
- [x] lldap/lldap
- [x] mailhog/mailhog
- [x] linuxserver/mastodon
- [x] 42wim/matterbridge :octocat:
- [x] matrixconduit/matrix-conduit
- [x] getmeili/meilisearch :mag:
@ -537,7 +540,6 @@ A collection of delicious docker recipes.
- [x] requarks/wiki
- [x] wordpress
- [x] yourls
- [x] ghcr.io/linuxserver/wireguard
- [x] zeek/zeek :skull:
- [x] apache/zeppelin
- [x] koenkk/zigbee2mqtt

6
piwigo/README.md Normal file
View File

@ -0,0 +1,6 @@
piwigo
======
[Piwigo][1] is open source photo gallery software for the web. Designed for organisations, teams and individuals.
[1]: https://github.com/Piwigo/Piwigo

14
piwigo/docker-compose.yml Normal file
View File

@ -0,0 +1,14 @@
version: "3.8"
services:
piwigo:
image: linuxserver/piwigo:14.5.0
ports:
- "8080:80"
volumes:
- ./data/etc:/config
- ./data/var:/gallery
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
restart: unless-stopped