-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use bind volumes #114
Comments
Same issue here |
same |
Same, that's odd... never had a problem with local volumes... and it's easy to backup/deploy |
The problem that occurs is that the bind volume isn't mounted during the build process. Lines 48 to 51 in 77a1312
A simple workaround is to initialise the bind mount manually, i.e., execute these commands (don't forget to update the path): curl -Lo /tmp/akaunting.zip 'https://akaunting.com/download.php?version=latest&utm_source=docker&utm_campaign=developers'
unzip /tmp/akaunting.zip -d <path to your bind volume>
rm -f /tmp/akaunting.zip |
After having the same issue as #111 , I tried using only docker volumes and it worked.
I would like to be able to use volumes like this:
How can I achieve that @MohammedAl-Mahdawi ?
Thanks for your help.
The text was updated successfully, but these errors were encountered: