Best practices for adding 'volume' tag to addons

Hi,

There are a few existing addons that I’d like to use, but I’d like to mount and map an NFS volume used instead of local disks for a few of the folders. Ideally changes I would make would persist when the underlying addon is updated.

Functionally, its strait forward to do with native docker. On Docker-compose, it would look something like:

volumes:
  example:
    driver_opts:
      type: "nfs"
      o: "addr=x.x.x.x,nolock,soft,rw"
      device: ":/mnt/Vol2"

And then ‘example’ would be mapped in the service: volume section. All that works fine on standard docker. However, I’m looking for a way to have this happen magically as a part of the addon via HA and HASSIO

Are there any best practices for achieving this?

thanks

1 Like

Did you find any solution?
I want to mount my media library from NAS to plex addon.