From 2aabdae10ac6ad8d49a8b27655bb7ace60c638af Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 8 Nov 2022 08:30:03 +0100 Subject: [PATCH] fix: add uid gid to monerod & privatebin --- apps/monerod/config.json | 4 +++- apps/privatebin/config.json | 4 +++- apps/schema.json | 6 ++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/monerod/config.json b/apps/monerod/config.json index 4c468b14..f677faaf 100644 --- a/apps/monerod/config.json +++ b/apps/monerod/config.json @@ -12,5 +12,7 @@ "short_desc": "Monero is a private, decentralized cryptocurrency that keeps your finances confidential and secure.", "author": "sethforprivacy", "source": "https://github.com/sethforprivacy/simple-monerod-docker", - "form_fields": [] + "form_fields": [], + "uid": 1000, + "gid": 1000 } diff --git a/apps/privatebin/config.json b/apps/privatebin/config.json index 71297e1d..b1320a90 100644 --- a/apps/privatebin/config.json +++ b/apps/privatebin/config.json @@ -12,5 +12,7 @@ "short_desc": "A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES.", "author": "PrivateBin", "source": "https://github.com/PrivateBin/PrivateBin", - "form_fields": [] + "form_fields": [], + "uid": 65534, + "gid": 82 } diff --git a/apps/schema.json b/apps/schema.json index 6cec4010..73146734 100644 --- a/apps/schema.json +++ b/apps/schema.json @@ -23,6 +23,12 @@ "https": { "type": "boolean" }, + "uid": { + "type": "integer" + }, + "gid": { + "type": "integer" + }, "requirements": { "type": "object", "properties": {