BundlingFileAccess
The access mechanism used to make source files available to the bundling container and to return the bundling output back to the host.
Members
Name | Description |
---|---|
BundlingFileAccess_VOLUME_COPY |
Creates temporary volumes and containers to copy files from the host to the bundling container and back. |
BundlingFileAccess_BIND_MOUNT |
The source and output folders will be mounted as bind mount from the host system This is faster and simpler, but less portable than VOLUME_COPY . |
BundlingFileAccess_VOLUME_COPY
Creates temporary volumes and containers to copy files from the host to the bundling container and back.
This is slower, but works also in more complex situations with remote or shared docker sockets.
BundlingFileAccess_BIND_MOUNT
The source and output folders will be mounted as bind mount from the host system This is faster and simpler, but less portable than VOLUME_COPY
.