variable troubles

This commit is contained in:
cody conder
2025-11-07 23:36:04 -06:00
parent 5dcb578ac5
commit 8bfa19a6ad
2 changed files with 12 additions and 5 deletions

View File

@@ -27,7 +27,7 @@
{"type":"password", {"type":"password",
"label":"Password", "label":"Password",
"required":true, "required":true,
"env_variable":"KOPIA_PASSWORD"}, "env_variable":"PASSWORD"},
{"type":"text", {"type":"text",
"label":"FingerPrint", "label":"FingerPrint",
"required":false, "required":false,

View File

@@ -12,18 +12,25 @@
"--tls-key-file=/app/certs/my.key", "--tls-key-file=/app/certs/my.key",
"--address=0.0.0.0:${APP_PORT}", "--address=0.0.0.0:${APP_PORT}",
"--server-username=${USER}", "--server-username=${USER}",
"--server-password=${KOPIA_PASSWORD}" "--server-password=${PASSWORD}"
], ],
"environment": [ "environment": [
{
"key": "KOPIA_PASSWORD",
"value": "${PASSWORD}"
},
{ {
"key": "KOPIA_SERVER_FINGERPRINT", "key": "KOPIA_SERVER_FINGERPRINT",
"value": "8b8129461e17b49256fb00dbd49da01c7927c6df96a73ea412580b2f63ccb682" "value": "KOPIA_SERVER_FINGERPRINT"
}, },
{ {
"key": "TZ", "key": "TZ",
"value": "America/Chicago" "value": "${TZ}"
},
{
"key": "USER",
"value": "${USER}"
} }
], ],
"internalPort": 51515, "internalPort": 51515,
"volumes": [ "volumes": [