forked from alexbelgium/hassio-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
49 lines (49 loc) · 1.54 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"arch": [
"aarch64",
"amd64"
],
"codenotary": "[email protected]",
"description": "collaborative bookmark manager to collect, organize, and preserve webpages and articles",
"environment": {
"AUTHENTIK_CLIENT_ID": "CLIENT_ID",
"AUTHENTIK_CLIENT_SECRET": "CLIENT_SECRET",
"AUTHENTIK_CUSTOM_NAME": "Authentik",
"AUTHENTIK_ISSUER": "https://authentik.my-doma.in/application/o/linkwarden",
"DATABASE_URL": "postgresql://postgres:homeassistant@localhost:5432/linkwarden",
"NEXTAUTH_URL": "http://localhost:3000/api/v1/auth",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "false",
"NEXT_PUBLIC_CREDENTIALS_ENABLED": "true",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "false",
"STORAGE_FOLDER": "/config/library"
},
"image": "ghcr.io/alexbelgium/linkwarden-{arch}",
"init": false,
"map": [
"addon_config:rw"
],
"name": "Linkwarden",
"ports": {
"3000/tcp": 3000
},
"ports_description": {
"3000/tcp": "webui"
},
"schema": {
"AUTHENTIK_CLIENT_ID": "str?",
"AUTHENTIK_CLIENT_SECRET": "str?",
"AUTHENTIK_CUSTOM_NAME": "str?",
"AUTHENTIK_ISSUER": "str?",
"DATABASE_URL": "str?",
"NEXTAUTH_SECRET": "str",
"NEXTAUTH_URL": "str?",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "bool?",
"NEXT_PUBLIC_CREDENTIALS_ENABLED": "bool?",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "bool?",
"STORAGE_FOLDER": "str?"
},
"slug": "linkwarden",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/linkwarden",
"version": "2.9.2",
"webui": "[PROTO:ssl]://[HOST]:[PORT:3000]"
}