Is it possible to use variables on the ‘host’ and ‘export’ (rancher-nfs) driver options?
When defined static in docker-compose it works:
volumes:
uploads:
driver: rancher-nfs
driver_opts:
host: gimli.thuis.breekeenbeen.nl
export: /volume2/uploads
If I try it with variables:
volumes:
uploads:
external: false
driver: ${uploads-storage_driver}
driver_opts:
host: ${uploads-host}
export: ${uploads-folder}
I get this error in the UI: Error (yaml: line 9: found character that cannot start any token)
Thanks in advance.