From 0cf1a73c76a8aead96aff0c11c6217182658b989 Mon Sep 17 00:00:00 2001 From: Markus Date: Sun, 16 Nov 2025 23:45:35 +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, 2 insertions(+), 6 deletions(-) diff --git a/apps/linkding/config.json b/apps/linkding/config.json index 752dcc4..3204265 100644 --- a/apps/linkding/config.json +++ b/apps/linkding/config.json @@ -20,14 +20,14 @@ "max": "50", "required": true, "placeholder": "admin", - "env_variable": "ENV_SUPERUSER_NAME" + "env_variable": "LD_SUPERUSER_NAME" }, { "type": "password", "label": "Initial superuser password", "max": "100", "required": true, - "env_variable": "ENVLD_SUPERUSER_PASSWORD" + "env_variable": "LD_SUPERUSER_PASSWORD" } ], "supported_architectures": ["arm64", "amd64"], diff --git a/apps/linkding/docker-compose.json b/apps/linkding/docker-compose.json index a8d9641..864d4c0 100644 --- a/apps/linkding/docker-compose.json +++ b/apps/linkding/docker-compose.json @@ -6,10 +6,6 @@ "image": "sissbruecker/linkding:1.44.1-alpine", "isMain": true, "internalPort": 9090, - "environment": [ - {"key": "LD_SUPERUSER_NAME", "value": "${ENV_SUPERUSER_NAME}"}, - {"key": "LD_SUPERUSER_PASSWORD", "value": "${ENV_SUPERUSER_PASSWORD}"} - ], "volumes": [ { "hostPath": "${APP_DATA_DIR}/data",