Last active 1745169613

Vaultwarden is an unofficial port of Bitwarden server compatible with the official Bitwarden clients and is less resource-heavy than Bitwarden

docker-compose.yml Raw
1services:
2 vaultwarden:
3 image: vaultwarden/server:latest
4 container_name: vaultwarden
5 restart: unless-stopped
6 environment:
7 WEBSOCKET_ENABLED: true
8 ADMIN_TOKEN: your-admin-authentication-token ## Aggiungi 32 caratteri casuali, sia lettere che numeri.
9 DOMAIN: https://vault.emanuelegori.uno ## https://tuo_dominio
10 SIGNUPS_ALLOWED: false ## true se vuoi creare un utente senza invito
11 SMTP_HOST: ssl0.ovh.net ## smpt host OVH
12 SMTP_FROM: noreply@your-domain.com
13 SMTP_PORT: 465 ## smpt port OVH
14 SMTP_SECURITY: force_tls ## smtp security OVH
15 SMTP_USERNAME: username ## username
16 SMTP_PASSWORD: password ## password
17 volumes:
18 - ./data:/data
19 networks:
20 - npm-internal ## network creata con NPM
21
22networks:
23 npm-internal:
24 name: npm-internal
25 external: true
26