I am using the free version of Docker Desktop in Ubuntu PC and creating the Images and containers.
When I am using the desktop-linux context , images and containers are showing in Docker desktop but macvlan network not working
docker context use desktop-linux
When I am using the default context , images and containers are not showing in Docker Desktop but macvlan network working perfectly
docker context use default
For your reference
docker network create -d macvlan --subnet 192.168.60.0/24 --gateway 192.168.60.254 -o parent=eth0 custommacvlan
docker run -d --name dockermacvlan --network custommacvlan --ip 192.168.60.20 nginx
I want to make both macvlan network working and images & containers need to show in the docker desktop.
Kindly give me the solution as soon as possible.