Остання активність 1745169613

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

Версія 7f695eb3cd943dd0792b28976a3ad055f5efc7d3

docker-compose.yml Неформатований
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
10 SMTP_HOST: smtp.domain.com
11 SMTP_FROM: mail@domain.com
12 SMTP_PORT: 587
13 SMTP_SECURITY: starttls
14 SMTP_USERNAME: username
15 SMTP_PASSWORD: password
16 volumes:
17 - ./data:/data
18 networks:
19 - npm-internal
20
21networks:
22 npm-internal:
23 name: npm-internal
24 external: true
25