I’ve been using Vaultwarden via docker-compose for a while now, but I’m now having an issue I have not experienced before. I’m unable to find anyone else reporting having this same issue on the forum or in the Github Issues.
The docker container just constantly restarts, and docker logs vaultwarden just keeps repeating this, so I’m unsure of what to try:
/--------------------------------------------------------------------\
| Starting Vaultwarden |
| Version 1.36.0 |
|--------------------------------------------------------------------|
| This is an *unofficial* Bitwarden implementation, DO NOT use the |
| official channels to report bugs/features, regardless of client. |
| Send usage/configuration questions or feature requests to: |
| https://github.com/dani-garcia/vaultwarden/discussions or |
| https://vaultwarden.discourse.group/ |
| Report suspected bugs/issues in the software itself at: |
| https://github.com/dani-garcia/vaultwarden/issues/new |
\--------------------------------------------------------------------/
Error: Rocket.
[CAUSE] Bind(
Os {
code: 13,
kind: PermissionDenied,
message: "Permission denied",
},
)
Any ideas on how to troubleshoot this?
This is my current docker-compose.yml:
version: '3'
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
#DOMAIN: "https://vaultwarden.mydomain.com"
ADMIN_TOKEN: "<my-admin-token>"
SIGNUPS_ALLOWED: "false"
INVITATIONS_ALLOWED: "false"
SENDS_ALLOWED: "false"
SIGNUPS_VERIFY: "false"
ORG_CREATION_USERS: "none"
ports:
- 8080:80
volumes:
- ./srv/vw-data:/data