Skip to content

Commit

Permalink
add smtp to vaultwarden config
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Zrimsek committed Aug 23, 2024
1 parent e1e1e82 commit 8532cc7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions services/vaultwarden/traefik.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ services:
image: vaultwarden/server:latest
container_name: vaultwarden
environment:
DOMAIN: "https://${APP_URL}"
SIGNUPS_ALLOWED: "true"
- DOMAIN=https://${APP_URL}
- SIGNUPS_ALLOWED=true
- SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_FROM=${SMTP_FROM}
- SMTP_SECURITY=starttls
- SMTP_USERNAME=${SMTP_USER}
- SMTP_PASSWORD=${SMTP_PASS}
- ADMIN_TOKEN=${ADMIN_TOKEN}
volumes:
- ${CONFIG_DIR}/vaultwarden/data:/data
networks:
Expand Down

0 comments on commit 8532cc7

Please sign in to comment.