added vaultwarden

This commit is contained in:
dominikhoebert 2024-08-02 15:38:10 +02:00
parent c13ab3365d
commit da9ff58298
3 changed files with 25 additions and 1 deletions

1
.gitignore vendored
View File

@ -40,3 +40,4 @@ netalertx/db/
netalertx/config/
stirlingpdf/trainingData/
stirlingpdf/configs/
vaultwarden/vw-data/

View File

@ -75,7 +75,7 @@ docker network create --driver bridge proxy
- redis 6379
- tinyfilemanager 8091
- jupytherlab 8888
- vaultwarden
- vaultwarden 8093
- cyberchef
- https://it-tools.tech/
- https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose

23
vaultwarden/compose.yml Normal file
View File

@ -0,0 +1,23 @@
# https://github.com/dani-garcia/vaultwarden
# 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
name: vaultwarden
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
#environment:
# DOMAIN: "https://vault.example.com" # Your domain here!
volumes:
- ./vw-data:/data
ports:
- 8093:80
networks:
- proxy
networks:
proxy:
external: true