Add Vaultwarden App
This commit is contained in:
parent
9bea6a9c52
commit
7791b8cdb9
2 changed files with 37 additions and 0 deletions
21
apps/vaultwarden/config.json
Normal file
21
apps/vaultwarden/config.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "VaultWarden",
|
||||||
|
"available": true,
|
||||||
|
"port": 8107,
|
||||||
|
"id": "Vaultwarden",
|
||||||
|
"description": "Alternative implementation of the Bitwarden server API written in Rust and compatible with upstream Bitwarden clients, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.",
|
||||||
|
"short_desc": "All your passwords in your control!",
|
||||||
|
"author": "Stetsed",
|
||||||
|
"source": "https://github.com/dani-garcia/vaultwarden",
|
||||||
|
"image": "https://raw.githubusercontent.com/dani-garcia/vaultwarden/b636d20c6475bfb1b36561cb95812faee26ea7db/resources/vaultwarden-icon.svg",
|
||||||
|
"form_fields": {
|
||||||
|
"admin_password": {
|
||||||
|
"type": "password",
|
||||||
|
"label": "Admin Panel Password",
|
||||||
|
"max": 50,
|
||||||
|
"min": 10,
|
||||||
|
"required": true,
|
||||||
|
"env_variable": "VAULTWARDEN_ADMIN_PASSWORD"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
16
apps/vaultwarden/docker-compose.yml
Normal file
16
apps/vaultwarden/docker-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
vaultwarden:
|
||||||
|
image: vaultwarden/server
|
||||||
|
container_name: vaultwarden
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- ${APP_PORT}:80
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
environment:
|
||||||
|
- WEBSOCKET_ENABLED=true
|
||||||
|
- ADMIN_TOKEN=$VAULTWARDEN_ADMIN_PASSWORD
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data:/data
|
Loading…
Add table
Reference in a new issue