I am attempting to update my admin token and it is not working. The Admin page password has been updated to '$argon2id$v=19$m=65540,t=3,p=...'
instead of the actual password that should be argon encrypted. I tried with and without the {}
's in the docker config, it doesn’t seem to change anything. My other env variables don’t use the brackets but the wiki includes them.
Note: I do not have a config.json
. Below is my config:
.env file
VAULTWARDEN_ADMIN_TOKEN='$argon2id$v=19$m=65540,t=3,p=...'
docker-compose
vaultwarden:
container_name: Vaultwarden
image: vaultwarden/server:latest
restart: always
volumes:
- $USERDIR/docker/vaultwarden/Data:/data/
- $USERDIR/docker/vaultwarden/SSL:/ssl/
- $USERDIR/docker/vaultwarden/Logs:/logs/
- /etc/localtime:/etc/localtime:ro
networks:
- t2_proxy
dns:
- "1.1.1.1"
ports:
- "$VAULTWARDEN_PORT:8089"
- "$VAULTWARDEN_WEBSOCKET_PORT:3012"
user: $PUID:$PGID
environment:
- LOG_FILE=/logs/vaultwarden.log
- LOG_LEVEL=info
- ADMIN_TOKEN=${VAULTWARDEN_ADMIN_TOKEN}