forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkwarden.json
70 lines (70 loc) · 3.14 KB
/
linkwarden.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"Linkwarden": {
"description": "<p>Linkwarden is a self-hosted, open-source collaborative bookmark manager for organizing and archiving webpages.</p><p>Based on the official image from <a href='https://github.com/linkwarden/linkwarden' target='_blank'>Linkwarden</a>, available for amd64 and arm64 architecture.</p>",
"version": "0.9",
"website": "https://linkwarden.app/",
"containers": {
"linkwarden": {
"image": "ghcr.io/linkwarden/linkwarden",
"tag": "latest",
"launch_order": 2,
"ports": {
"3000": {
"description": "The port for accessing the Linkwarden Web UI.",
"label": "Web UI Port",
"host_default": 3000,
"ui": true
}
},
"volumes": {
"/data/data": {
"description": "Choose a Share for Linkwarden data storage. E.g., create a share named linkwarden-data.",
"label": "Linkwarden Data Storage"
}
},
"environment": {
"DATABASE_URL": {
"description": "PostgreSQL connection string. Set to postgresql://postgres:<password>@linkwarden-postgres:5432/linkwarden",
"label": "PostgreSQL URL",
"index": 3
},
"NEXTAUTH_SECRET": {
"description": "Set an alphanumeric secret phrase for Linkwarden's authentication mechanism. This is not a user password but internal to Linkwarden.",
"label": "Linkwarden Secret",
"index": 2
},
"NEXTAUTH_URL": {
"description": "Base URL for Linkwarden. Set to: http://<Rockstor IP address or server name>:<Web UI port defined earlier>/api/v1/auth",
"label": "Linkwarden Base URL",
"index": 1
}
}
},
"linkwarden-postgres": {
"image": "postgres",
"tag": "17-alpine",
"launch_order": 1,
"volumes": {
"/var/lib/postgresql/data": {
"description": "Choose a Share for PostgreSQL database storage.",
"label": "PostgreSQL Storage"
}
},
"environment": {
"POSTGRES_PASSWORD": {
"description": "Enter the password for the PostgreSQL 'postgres' super-user that was entered previously as part of the 'PostgreSQL URL'",
"label": "PostgreSQL Password"
}
}
}
},
"container_links": {
"linkwarden": [
{
"name": "linkwarden-to-linkwarden-postgres",
"source_container": "linkwarden-postgres"
}
]
}
}
}