-
Notifications
You must be signed in to change notification settings - Fork 642
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
allow volumes to be bound from an image at runtime #55
Comments
If I understand you right, you want to have the possibility to export directories from the images when building an image. This sounds a good idea. But is it possible to specify the host directory when building an image ? I think that's only an option when starting a container, in the image you can only specify the diretories/volumes to export. For the naming, I probably would leave
We already have some 'double' config tags for Also the external property configuration handler could benefit so that when you have a properties
then |
If you want to work on that, I can assign the issue to you. |
sounds good - about 1/2 way done i think. need to add this to the property handler. it doesn't appear that you can distinguish between child elements in a list, so i have to use a separate nesting element. right now i'm going with |
Added this to integration and will be available in 0.10.6 (or maybe 0.11.0 because of the configuration syntax changes). |
i need to bind/export volumes as mount points when a container starts up. this would allow a workaround for containers that do not do this already do this (eg. the 'official' docker tomcat container).
i was going to suggest just adding a child element to
volumes
but perhaps that would be confusing, so maybeexports
instead? eg:let me know thoughts, i have an immediate need for this and can spend some time on it in the coming days (followed by the naming issue as that's now 2nd on my list).
The text was updated successfully, but these errors were encountered: