changed app linkding: fixed form-feeded env variables
This commit is contained in:
parent
0cf1a73c76
commit
8ef85cba21
2 changed files with 6 additions and 2 deletions
|
|
@ -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"],
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue