forked from rockstor/rockon-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitwarden-rs-alpine.json
41 lines (41 loc) · 1.96 KB
/
bitwarden-rs-alpine.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
{
"Bitwarden-rs": {
"description": "Bitwarden password manager server in Rust and on Alpine (speed, size). <p>Based on the following docker image: <a href='https://hub.docker.com/r/bitwardenrs/server' target='_blank'>https://hub.docker.com/r/bitwardenrs/server</a></p>.",
"version": "0.0.1",
"website": "https://github.com/dani-garcia/bitwarden_rs",
"more_info": "SSL/TLS certs and keys required. They must be placed in the Rockstor share used as <em>Bitwarden-rs 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": {
"bitwarden-rs": {
"image": "bitwardenrs/server",
"tag": "alpine",
"launch_order": 1,
"ports": {
"80": {
"description": "Admin interface",
"label": "Admin interface",
"host_default": 80,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/data": {
"description": "Where all bitwarden-rs data will be stored",
"label": "Bitwarden-rs storage"
},
"/ssl": {
"description": "SSL cert/key location to enable ssl",
"label": "Bitwarden-rs cert storage"
}
},
"opts": [
["-e", "ROCKET_TLS={certs=\"/ssl/certs.pem\",key=\"/ssl/key.pem\"}"]
]
}
}
}
}