Another thing you might want to look at is they took out the default mapping of Docker’s DNS and replaced it with cloudflair which doesn’t work well when the router resolves correctly.
so try putting in your dns from your ethernet connection:
find what your ethernet connection is using:
nmcli dev show enp1s0 | grep 'IP4.DNS'
then assign that IP to the system.d Network manager since they are using that for DNS queries from docker software. Replace xxx.xxx.xxx.xx with your router’s dns IP:
sudo -i
printf '[global-dns-domain-*]\nservers=xxx.xxx.xxx.xxx\n' > /etc/NetworkManager/conf.d/10-cloudflaredns.conf
and restart