Mount Points & SaaS Boost #37
-
I have an issue with mount point volumes and SaaS boost, it's more of a user problem rather than a code one. I was hoping someone could help me. I have read all the documentation about mounted volumes in docker and AWS. But still can't get it to work within AWS. What I have!
Here is part of my dockerfile:
The problemI need /foo directory not to be empty when I use the -v flag , and the documentation states any file inside the container's folder will be copied to the bind mount volume. This is not happening. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @AffiTheCreator, There is an issue with the code that prevents EFS volume from getting mounted in the main container. I have pushed the changes part of this commit which should resolve this issue Once the changes are merged you don't need to install any drivers for mounting EFS, its by default mounted on the You can directly write and read from these volume using your program. Hope this answers your question. ~ Hari |
Beta Was this translation helpful? Give feedback.
-
The fixes by Hari have been merged into the main branch. |
Beta Was this translation helpful? Give feedback.
Hi @AffiTheCreator,
There is an issue with the code that prevents EFS volume from getting mounted in the main container. I have pushed the changes part of this commit which should resolve this issue
76c9d95
Once the changes are merged you don't need to install any drivers for mounting EFS, its by default mounted on the
Mount Point
specified while creating the app (in my case its/mnt
).You can directly write and read from these volume using your program. Hope this answers your question.
~ Hari