Docker useful commands
docker stop container command: Remove one or more containers Remove all stopped containers
docker stop container command: Remove one or more containers Remove all stopped containers
Network Configuration by netplan For Example we want to set IPv4 192.168.10.10 on our ubuntu machine, here is a sample of yml file network: version: 2 renderer: networkd ethernets: eth0: dhcp4: false dhcp6: false addresses: – 192.168.10.10/24 routes: – to: default via: 192.168.10.1 nameservers: addresses: [192.168.10.1] In the above configuration: Make sure the IPv4 address…