Setting AUTO_TRUST_NETWORKS doesn't add connected networks to mynetworks config option.
I have narrowed it down to list-available-networks.sh script always returning an empty value.
Tested with latest image.
My current workaround:
do NOT set AUTO_TRUST_NETWORKS env
set the following env:
ADDITIONAL_MYNETWORKS=172.16.0.0/12
This should cover any virtual Docker subnet; be very careful of the rest of your Docker network config as it makes it an open relay for any container that can reach it.
Setting AUTO_TRUST_NETWORKS doesn't add connected networks to
mynetworksconfig option.I have narrowed it down to
list-available-networks.shscript always returning an empty value.Tested with latest image.
My current workaround:
do NOT set
AUTO_TRUST_NETWORKSenvset the following env:
ADDITIONAL_MYNETWORKS=172.16.0.0/12This should cover any virtual Docker subnet; be very careful of the rest of your Docker network config as it makes it an open relay for any container that can reach it.