From 8ef85cba21019971494726b94308949b08cc0822 Mon Sep 17 00:00:00 2001 From: Markus Date: Sun, 16 Nov 2025 23:49:08 +0100 Subject: [PATCH] changed app linkding: fixed form-feeded env variables --- apps/linkding/config.json | 4 ++-- apps/linkding/docker-compose.json | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/linkding/config.json b/apps/linkding/config.json index 3204265..2625f4f 100644 --- a/apps/linkding/config.json +++ b/apps/linkding/config.json @@ -20,14 +20,14 @@ "max": "50", "required": true, "placeholder": "admin", - "env_variable": "LD_SUPERUSER_NAME" + "env_variable": "SUPERUSER_NAME" }, { "type": "password", "label": "Initial superuser password", "max": "100", "required": true, - "env_variable": "LD_SUPERUSER_PASSWORD" + "env_variable": "SUPERUSER_PASSWORD" } ], "supported_architectures": ["arm64", "amd64"], diff --git a/apps/linkding/docker-compose.json b/apps/linkding/docker-compose.json index 864d4c0..27ebab9 100644 --- a/apps/linkding/docker-compose.json +++ b/apps/linkding/docker-compose.json @@ -6,6 +6,10 @@ "image": "sissbruecker/linkding:1.44.1-alpine", "isMain": true, "internalPort": 9090, + "environment": [ + { "key": "LD_SUPERUSER_NAME", "value": "${SUPERUSER_NAME}" }, + { "key": "LD_SUPERUSER_PASSWORD", "value": "${SUPERUSER_PASSWORD}" } + ], "volumes": [ { "hostPath": "${APP_DATA_DIR}/data",