Update VaultWarden config
This commit is contained in:
parent
66a82ab78f
commit
0f62ec4c78
2 changed files with 23 additions and 23 deletions
|
@ -2,10 +2,10 @@
|
||||||
"name": "VaultWarden",
|
"name": "VaultWarden",
|
||||||
"available": true,
|
"available": true,
|
||||||
"port": 8107,
|
"port": 8107,
|
||||||
"id": "Vaultwarden",
|
"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.",
|
"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!",
|
"short_desc": "All your passwords in your control!",
|
||||||
"author": "Stetsed",
|
"author": "Daniel García",
|
||||||
"source": "https://github.com/dani-garcia/vaultwarden",
|
"source": "https://github.com/dani-garcia/vaultwarden",
|
||||||
"image": "https://raw.githubusercontent.com/dani-garcia/vaultwarden/b636d20c6475bfb1b36561cb95812faee26ea7db/resources/vaultwarden-icon.svg",
|
"image": "https://raw.githubusercontent.com/dani-garcia/vaultwarden/b636d20c6475bfb1b36561cb95812faee26ea7db/resources/vaultwarden-icon.svg",
|
||||||
"form_fields": {
|
"form_fields": {
|
||||||
|
@ -18,4 +18,4 @@
|
||||||
"env_variable": "VAULTWARDEN_ADMIN_PASSWORD"
|
"env_variable": "VAULTWARDEN_ADMIN_PASSWORD"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
version: '3'
|
version: '3.7'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
vaultwarden:
|
vaultwarden:
|
||||||
image: vaultwarden/server
|
image: vaultwarden/server:1.24.0
|
||||||
container_name: vaultwarden
|
container_name: vaultwarden
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${APP_PORT}:80
|
- ${APP_PORT}:80
|
||||||
networks:
|
|
||||||
- tipi_main_network
|
|
||||||
environment:
|
environment:
|
||||||
- WEBSOCKET_ENABLED=true
|
- WEBSOCKET_ENABLED=true
|
||||||
- ADMIN_TOKEN=${VAULTWARDEN_ADMIN_PASSWORD}
|
- ADMIN_TOKEN=${VAULTWARDEN_ADMIN_PASSWORD}
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data:/data
|
- ${APP_DATA_DIR}/data:/data
|
||||||
|
networks:
|
||||||
|
- tipi_main_network
|
||||||
|
|
Loading…
Add table
Reference in a new issue