mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-03-02 22:57:18 -05:00
Docker run error #229
Labels
No labels
SSO
Third party
better for forum
bug
bug
documentation
duplicate
enhancement
future Vault
future Vault
future Vault
good first issue
help wanted
low priority
notes
question
troubleshooting
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vaultwarden#229
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kjarrard on GitHub (Feb 15, 2019).
1 - Installed Ubuntu
2 - installed Docker
3 - Pulled docker image
4 - Ran sudo docker run -d --name bitwarden -v /bw-data/:/data/ -p 80:80 mprasil/bitwarden:latest
this was the error I received (sorry if this is obvious, I'm pretty new to linux):
bitwarden_admin@LIASWARDEN:~$ sudo docker run -d --name bitwarden -v /bw-data/:/data/ -p 80:80 mprasil/bitwarden:latest
6e9c5352a793230be4b1ff43d7ca36ab7c3b281e7c1e6de6ae31cf5be995874c
docker: Error response from daemon: error while creating mount source path '/bw-data': mkdir /bw-data: read-only file system.
@BlackDex commented on GitHub (Feb 16, 2019):
Docker wanted to create the path /bw-data, but wasn't allowed to do so because of rights or the / filesystem is a read-only file system for some reason.
What happens if you try to create that folder your self?
sudo mkdir /bw-dataDoes that generate an error also?
If not, what happens when you do the
docker runagain after creating the folder?