diff --git a/.gitignore b/.gitignore index c33f3ac..5e0766a 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ netalertx/db/ netalertx/config/ stirlingpdf/trainingData/ stirlingpdf/configs/ +vaultwarden/vw-data/ diff --git a/README.md b/README.md index 1970807..18cc3c7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/vaultwarden/compose.yml b/vaultwarden/compose.yml new file mode 100644 index 0000000..86e5579 --- /dev/null +++ b/vaultwarden/compose.yml @@ -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 + \ No newline at end of file