From a561c3b0eb8a5aae6d2d424076099420d184c47a Mon Sep 17 00:00:00 2001 From: apb Date: Sun, 24 Oct 2021 22:40:22 +0100 Subject: [PATCH] [add] piwigo --- .project | 11 +++++++++++ piwigo/README.md | 4 ++++ piwigo/config/.gitignore | 8 ++++++++ piwigo/docker-compose.yml | 16 ++++++++++++++++ piwigo/gallery/.gitignore | 8 ++++++++ 5 files changed, 47 insertions(+) create mode 100644 .project create mode 100644 piwigo/README.md create mode 100644 piwigo/config/.gitignore create mode 100644 piwigo/docker-compose.yml create mode 100644 piwigo/gallery/.gitignore diff --git a/.project b/.project new file mode 100644 index 0000000..146d7af --- /dev/null +++ b/.project @@ -0,0 +1,11 @@ + + + thedocks + + + + + + + + diff --git a/piwigo/README.md b/piwigo/README.md new file mode 100644 index 0000000..e75b7f4 --- /dev/null +++ b/piwigo/README.md @@ -0,0 +1,4 @@ +# piwigo setup + + +HTS Tvheadend 4.3-1979~g8fc2dfa7e \ No newline at end of file diff --git a/piwigo/config/.gitignore b/piwigo/config/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/piwigo/config/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore diff --git a/piwigo/docker-compose.yml b/piwigo/docker-compose.yml new file mode 100644 index 0000000..a086e9c --- /dev/null +++ b/piwigo/docker-compose.yml @@ -0,0 +1,16 @@ +--- +version: "2.1" +services: + piwigo: + image: lscr.io/linuxserver/piwigo + container_name: piwigo + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./config>:/config + - ./gallery>:/gallery + ports: + - 8002:80 + restart: unless-stopped \ No newline at end of file diff --git a/piwigo/gallery/.gitignore b/piwigo/gallery/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/piwigo/gallery/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore