Dockerfile defines default volume:
VOLUME /var/www/html
This was totally ok before we enabled configurable docroots, but now it can happen that we create this default volume and never use it and/or don't create volume for the actual docroot. Same issue exists in php images.
Any idea how to solve that? Should we remove assumption about the volume and let users decide on that? Would it be possible to create it dynamically based on the docroot configuration?
Dockerfile defines default volume:
VOLUME /var/www/htmlThis was totally ok before we enabled configurable docroots, but now it can happen that we create this default volume and never use it and/or don't create volume for the actual docroot. Same issue exists in php images.
Any idea how to solve that? Should we remove assumption about the volume and let users decide on that? Would it be possible to create it dynamically based on the docroot configuration?