emanuelegori revised this gist 7 months ago. Go to revision
1 file changed, 10 insertions, 10 deletions
docker-compose.yml
| @@ -5,19 +5,19 @@ services: | |||
| 5 | 5 | restart: unless-stopped | |
| 6 | 6 | environment: | |
| 7 | 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: smtp.domain.com | |
| 12 | - | SMTP_FROM: mail@domain.com | |
| 13 | - | SMTP_PORT: 587 | |
| 14 | - | SMTP_SECURITY: starttls | |
| 15 | - | SMTP_USERNAME: username | |
| 16 | - | SMTP_PASSWORD: password | |
| 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 | 17 | volumes: | |
| 18 | 18 | - ./data:/data | |
| 19 | 19 | networks: | |
| 20 | - | - npm-internal | |
| 20 | + | - npm-internal ## network creata con NPM | |
| 21 | 21 | ||
| 22 | 22 | networks: | |
| 23 | 23 | npm-internal: | |
emanuelegori revised this gist 7 months ago. Go to revision
1 file changed, 2 insertions, 1 deletion
docker-compose.yml
| @@ -7,7 +7,8 @@ services: | |||
| 7 | 7 | WEBSOCKET_ENABLED: true | |
| 8 | 8 | ADMIN_TOKEN: your-admin-authentication-token ## Aggiungi 32 caratteri casuali, sia lettere che numeri. | |
| 9 | 9 | DOMAIN: https://vault.emanuelegori.uno ## https://tuo_dominio | |
| 10 | - | SMTP_HOST: smtp.domain.com | |
| 10 | + | SIGNUPS_ALLOWED: false ## true se vuoi creare un utente senza invito | |
| 11 | + | SMTP_HOST: smtp.domain.com | |
| 11 | 12 | SMTP_FROM: mail@domain.com | |
| 12 | 13 | SMTP_PORT: 587 | |
| 13 | 14 | SMTP_SECURITY: starttls | |
emanuelegori revised this gist 8 months ago. Go to revision
1 file changed, 1 insertion, 1 deletion
docker-compose.yml
| @@ -6,7 +6,7 @@ services: | |||
| 6 | 6 | environment: | |
| 7 | 7 | WEBSOCKET_ENABLED: true | |
| 8 | 8 | ADMIN_TOKEN: your-admin-authentication-token ## Aggiungi 32 caratteri casuali, sia lettere che numeri. | |
| 9 | - | DOMAIN: https://vault.emanuelegori.uno | |
| 9 | + | DOMAIN: https://vault.emanuelegori.uno ## https://tuo_dominio | |
| 10 | 10 | SMTP_HOST: smtp.domain.com | |
| 11 | 11 | SMTP_FROM: mail@domain.com | |
| 12 | 12 | SMTP_PORT: 587 | |
emanuelegori revised this gist 8 months ago. Go to revision
1 file changed, 1 insertion, 1 deletion
docker-compose.yml
| @@ -5,7 +5,7 @@ services: | |||
| 5 | 5 | restart: unless-stopped | |
| 6 | 6 | environment: | |
| 7 | 7 | WEBSOCKET_ENABLED: true | |
| 8 | - | ADMIN_TOKEN: your-admin-authentication-token | |
| 8 | + | ADMIN_TOKEN: your-admin-authentication-token ## Aggiungi 32 caratteri casuali, sia lettere che numeri. | |
| 9 | 9 | DOMAIN: https://vault.emanuelegori.uno | |
| 10 | 10 | SMTP_HOST: smtp.domain.com | |
| 11 | 11 | SMTP_FROM: mail@domain.com | |
emanuelegori revised this gist 8 months ago. Go to revision
1 file changed, 24 insertions
docker-compose.yml(file created)
| @@ -0,0 +1,24 @@ | |||
| 1 | + | services: | |
| 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 | |
| 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 | + | ||
| 21 | + | networks: | |
| 22 | + | npm-internal: | |
| 23 | + | name: npm-internal | |
| 24 | + | external: true | |