This commit is contained in:
2024-12-17 23:26:14 -06:00
parent 45f89d68bb
commit 20416b2045
10 changed files with 44 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
# Generate token with this:
# openssl rand -base64 48
services:
server:
image: vaultwarden/server:latest
restart: unless-stopped
ports:
- '${APP_PORT}:80'
environment:
ADMIN_TOKEN: ${ADMIN_TOKEN}
WEBSOCKET_ENABLED: true
SIGNUPS_ALLOWED: false
SMTP_HOST: ${SMTP_HOST}
SMTP_FROM: ${SMTP_FROM}
SMTP_PORT: ${SMTP_PORT}
SMTP_SECURITY: ${SMTP_SECURITY}
SMTP_USERNAME: ${SMTP_USERNAME}
SMTP_PASSWORD: ${SMTP_PASSWORD}
DOMAIN: ${DOMAIN}
volumes:
- ${ROOT_DIR}:/data:rw