Replies: 1 comment 8 replies
-
What happens? What do the logs say? Is there an error message?
Are you entering the password you have used when generating the
Are you entering this |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
`version: '3'
services:
vaultwarden:
restart: always
container_name: vaultwarden
image: vaultwarden/server:latest
volumes:
- /home/vaultwarden/data/:/data/
ports:
- 8080:80
environment:
ADMIN_TOKEN: "token with $$ inside these quotes"
SMTP_HOST: mail.google.com
SMTP_FROM: mail
SMTP_FROM_NAME: VaultWarden
SMTP_SECURITY: starttls
SMTP_PORT: 587
SMTP_USERNAME: mail
SMTP_PASSWORD: pwd
SMTP_TIMEOUT: 30
SMTP_AUTH_MECHANISM: "Plain"
LOGIN_RATELIMIT_MAX_BURST: 10
LOGIN_RATELIMIT_SECONDS: 60
DOMAIN: https://domain.org
INVITATION_ORG_NAME: HomeVault
INVITATIONS_ALLOWED: "true"
SIGNUPS_ALLOWED: "true"
SIGNUPS_DOMAINS_WHITELIST: google.com
SIGNUPS_VERIFY: "true"
SIGNUPS_VERIFY_RESEND_TIME: 3600
SIGNUPS_VERIFY_RESEND_LIMIT: 6
EMERGENCY_ACCESS_ALLOWED: "true"
SENDS_ALLOWED: "true"
WEB_VAULT_ENABLED: "true"`
So this is my compose file and when i try to run this in docker first issue it gives me is i cannot register an account 2nd i cannot access the admin panel i use
docker inspect vaultwardento get the ADMIN_TOKEN from the config so i would like to know what i m doing wrong....Beta Was this translation helpful? Give feedback.
All reactions