Dynamic share mount into docker

By using bind mounts within the stack/compose configuration, it is possible to mount the root /mnt mount point into the docker environment. This means when a new share will be added on the host side, this will be available in the docker system.

The file or directory does not need to exist on the Docker host already. It is created on demand if it does not yet exist. Bind mounts are very performant, but they rely on the host machine’s filesystem having a specific directory structure available.

Please use this function with caution! The automatic/dynamic mounting of all sub-folders can be a security risk. Please clarify this internally with your IT department beforehand.

The changes for this are very easy and straight forward:

Consider that the default basic /mnt:/Volumes mounting needs to be removed or changed to a comment, as this would lead to an issue when deploying the stack.

Configuration example docker bind
volumes:
      - type: bind
        bind:
          propagation: rslave
        source: /mnt
        target: /Volumes
      
      #- /mnt:/Volumes
      
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro