Currently,
the Networks.connect method takes the driver_opt parameter in order to pass to the driver some custom values: https://docker-py.readthedocs.io/en/stable/networks.html#docker.models.networks.Network.connect.
I have a custom Network Plugin which uses such parameters to generate the MAC Address.
However, it is not possible to specify any custom value while attaching the first Docker network using Containers.create or Containers.run.
Is it possible to expose this parameter in such methods?
Thanks.