-
Notifications
You must be signed in to change notification settings - Fork 97
/
vaultwarden.json
41 lines (41 loc) · 2.01 KB
/
vaultwarden.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
{
"Vaultwarden": {
"description": "Alternative implementation of the Bitwarden password manager server API written in Rust. <p>Based on a custom docker image: <a href='https://hub.docker.com/r/vaultwarden/server' target='_blank'>https://hub.docker.com/r/vaultwarden/server</a>, available for amd64 and arm64 architecture.</p>",
"version": "0.0.2",
"website": "https://github.com/dani-garcia/vaultwarden",
"more_info": "SSL/TLS certs and keys required. They must be placed in the Rockstor share used as <em>Vaultwarden cert storage</em> during the rock-on's installation process:<br><ul><li><code>/mnt2/[share-name]/certs.pem</code></li><li><code>/mnt2/[share-name]/key.pem</code></li></ul><br>Of note, <code>certs.pem</code> can be a chain. Need a cert? Try <a href=\"https://github.com/FiloSottile/mkcert\" target=\"_blank\">mkcert</a> or openssl.",
"ui": {
"https": true,
"slug": ""
},
"containers": {
"vaultwarden": {
"image": "vaultwarden/server",
"tag": "latest",
"launch_order": 1,
"ports": {
"80": {
"description": "Admin interface",
"label": "Admin interface",
"host_default": 80,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/data": {
"description": "Where all vaultwarden data will be stored",
"label": "Vaultwarden storage"
},
"/ssl": {
"description": "SSL cert/key location to enable ssl",
"label": "Vaultwarden cert storage"
}
},
"opts": [
["-e", "ROCKET_TLS={certs=\"/ssl/certs.pem\",key=\"/ssl/key.pem\"}"]
]
}
}
}
}