You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 6, 2018. It is now read-only.
using the machine resource, I define volumes such as: :volumes => ["/Users/testuser:/home/testuser"],
The docker run command that is issued does mount the volumes (if I run it manually it works), but then in the DockerContainerMachine::converge function the container is renamed and the volumes are lost (the directory exists but is not mounted, no files)
The text was updated successfully, but these errors were encountered:
At this point I can confirm when transport.container.commit is called none of the options are getting passed, and subsequently when image.run is called none of these options exist on the container, therefore the volumes are missing
I am not sure on the correct fix, I think we want to invoke Docker::Image.create with the correct options OR just call transport.execute as it was doing previous to the change above. Look forward to hearing thoughts
using the machine resource, I define volumes such as:
:volumes => ["/Users/testuser:/home/testuser"],
The
docker run
command that is issued does mount the volumes (if I run it manually it works), but then in theDockerContainerMachine::converge
function the container is renamed and the volumes are lost (the directory exists but is not mounted, no files)The text was updated successfully, but these errors were encountered: