init commit

This commit is contained in:
mk
2026-02-15 00:47:12 -03:00
commit 0951f21e8e
21 changed files with 408 additions and 0 deletions

2
vaultwarden/.env.example Normal file
View File

@@ -0,0 +1,2 @@
SIGNUPS_ALLOWED=false
INVITATIONS_ALLOWED=true

5
vaultwarden/README.md Normal file
View File

@@ -0,0 +1,5 @@
# Bitwarden but vaultwarden
This is bitwarden, it's compatible with any bitwarden extension or software, it's just made in rust, generally takes less resources and doesn't scale as well, good for ~50 people(guess)
Configurations by default disable registration and enable them by invitations, change to enable to create the first one and change back to only allow by invitation

View File

@@ -0,0 +1,13 @@
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
# DOMAIN: "https://vaultwarden.example.com" # required when using a reverse proxy; your domain; vaultwarden needs to know it's https to work properly with attachments
SIGNUPS_ALLOWED: ${SIGNUPS_ALLOWED} # Deactivate this with "false" after you have created your account so that no strangers can register
INVITATIONS_ALLOWED: ${INVITATIONS_ALLOWED}
volumes:
- ./data:/data # the path before the : can be changed
ports:
- 8081:80 # you can replace the 11001 with your preferred port