mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-07-16 17:02:14 -05:00
Docker run error #229
Reference in New Issue
Block a user
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?