I have multiple sets of files I want to include as data for a web server. Some of these sets are the static assets to back a static website.
Suppose there are static assets for exactly two websites, to be included as data for a web server. Each set of assets is laid out in its own folder, perhaps within a source code (e.g. git) repository. These are located at:
/path/to/site1/public
and
/other/path/to/site2/public
In fact there may be several sets of such static assets located in different subdirectories of folders in various places in the filesystem.
I need to install them into a Docker image as,
for example, /var/www/http/site1
, and /var/www/http/site2
,
and so on.
It would be very useful to have a good way to bypass the Docker limitations on use of symlinks without having to post these datasets on a web server somewhere and refer to their URLs in Dockerfiles.