From 2e5201f19231037420f49a726539e237601b76e1 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 6 Feb 2021 23:16:08 +0100 Subject: [PATCH] Create config.json --- piwigo/config.json | 55 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 piwigo/config.json diff --git a/piwigo/config.json b/piwigo/config.json new file mode 100644 index 000000000..fe8a57caa --- /dev/null +++ b/piwigo/config.json @@ -0,0 +1,55 @@ +{ + "name": "Piwigo", + "version": "11.3.0", + "slug": "piwigo", + "description": "Piwigo is a photo gallery software for the web", + "url": "https://github.com/alexbelgium/hassio-addons/tree/master/piwigo", + "startup": "services", + "arch": [ + "aarch64", + "amd64", + "armv7", + "armhf" + ], + "ports": { + "80/tcp": 81 + }, + "ports_description": { + "80/tcp": "Web UI port" + }, + "privileged": [ + "SYS_ADMIN" + ], + "full_access": true, + "map":[ + "media:rw", + "config:rw", + "share:rw", + "ssl" + ], + "webui": "[PROTO:ssl]://[HOST]:[PORT:80]", + "boot": "auto", + "environment": { + "PUID": 0, + "PGID": 0 + }, + "options": { + "ssl": false, + "certfile": "fullchain.pem", + "keyfile": "privkey.pem", + "PUID": 0, + "PGID": 0 + }, + "schema": { + "ssl": "bool", + "certfile": "str", + "keyfile": "str", + "PUID": "int", + "PGID": "int", + "localdisks": "str?", + "networkdisks": "str?", + "cifsusername": "str?", + "cifspassword": "str?", + "TZ": "str?" + } +}