Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename bitwarden rs to vaultwarden #297

Merged
merged 4 commits into from Dec 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 0 additions & 41 deletions bitwarden-rs-alpine.json

This file was deleted.

2 changes: 1 addition & 1 deletion root.json
@@ -1,6 +1,5 @@
{
"Bitcoin": "bitcoind.json",
"Bitwarden-rs": "bitwarden-rs-alpine.json",
"Booksonic": "booksonic.json",
"Cardigann": "cardigann.json",
"Collabora Online": "collabora-online.json",
Expand Down Expand Up @@ -81,6 +80,7 @@
"Ubiquiti Unifi linuxserver.io": "unifi-linuxserver.json",
"Unifi Controller": "unifi.json",
"uTorrent": "uTorrent.json",
"Vaultwarden": "vaultwarden.json",
"Watchtower offical": "watchtower_official.json",
"Xeoma Video Surveillance": "xeoma.json",
"YouTrack official": "youtrack-official.json",
Expand Down
41 changes: 41 additions & 0 deletions vaultwarden.json
@@ -0,0 +1,41 @@
{
"Vaultwarden": {
"description": "Alternative implementation of the Bitwarden password manager server API written in Rust. <p>Based on the following docker image: <a href='https://hub.docker.com/r/vaultwarden/server' target='_blank'>https://hub.docker.com/r/vaultwarden/server</a> compatible with amd64 and arm64 architectures.</p>",
"version": "0.0.1",
"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\"}"]
]
}
}
}
}