Files
hassio-addons/linkwarden/config.json
ddcash eb7492bb94 Add option to disable registration
Add the options to disable registration and if using SSO the option to disable the username and password fields

using the variables from https://docs.linkwarden.app/self-hosting/environment-variables
2024-07-21 11:53:30 -05:00

48 lines
1.4 KiB
JSON

{
"arch": [
"aarch64",
"amd64"
],
"codenotary": "alexandrep.github@gmail.com",
"description": "collaborative bookmark manager to collect, organize, and preserve webpages and articles",
"environment": {
"DATABASE_URL": "postgresql://postgres:homeassistant@localhost:5432/linkwarden",
"STORAGE_FOLDER": "/config/library",
"NEXTAUTH_URL": "http://localhost:3000/api/v1/auth",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "false",
"NEXT_PUBLIC_CREDENTIALS_ENABLED": "true",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "False",
"AUTHENTIK_CUSTOM_NAME": "Authentik",
"AUTHENTIK_ISSUER": "https://authentik.my-doma.in/application/o/linkwarden",
"AUTHENTIK_CLIENT_ID": "CLIENT_ID",
"AUTHENTIK_CLIENT_SECRET": "CLIENT_SECRET",
},
"image": "ghcr.io/alexbelgium/linkwarden-{arch}",
"init": false,
"map": [
"addon_config:rw"
],
"name": "Linkwarden",
"ports": {
"3000/tcp": 3000
},
"ports_description": {
"3000/tcp": "webui"
},
"schema": {
"DATABASE_URL": "str?",
"NEXTAUTH_SECRET": "str",
"NEXTAUTH_URL": "str?",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "str?",
"STORAGE_FOLDER": "str?",
"AUTHENTIK_CUSTOM_NAME": "str?",
"AUTHENTIK_ISSUER": "str?",
"AUTHENTIK_CLIENT_ID": "str?",
"AUTHENTIK_CLIENT_SECRET": "str?"
},
"slug": "linkwarden",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/linkwarden",
"version": "2.6.0-2",
"webui": "[PROTO:ssl]://[HOST]:[PORT:3000]"
}