How to install Windows 10 Home 19018 update?

I’m using windows home edition, I have the latest update installed 1909. I want to install docker for windows 10 home edition. It keeps saying Docker Desktop requires Windows 10 Pro/Enterprise (15063+) or Windows 10 Home (19018+). Should I join Windows insider? How long should I wait for that update to be released if I … Read more

Is it possible to have docker running inside of vmware?

I run vmware workstation for my dev needs and have to maintain different VMs for diff environments. Docker seems to allow running diff environments in containers, therefore Inside of my Windows 10 x64 VM can I run docker and use different images and containers to develop, build and test my code? (Remember I’m running my … Read more

How to remove all the vEthernet (Default Switch) once and for all?

As in the screenshot above, I don’t know why the vEthernet (Default Switch) on my Windows 10 laptop keeps reproducing itself and auto connecting to it everytime I shut down and switch on the laptop. Worst is if I switch Wi-Fi networks, it auto connects to the vEthernet (Default Switch) even when i have pre-disabled … Read more

apt-get update is failing in debian

cat /etc/apt/sources.list deb http://deb.debian.org/debian jessie main deb http://deb.debian.org/debian jessie-updates main deb http://security.debian.org jessie/updates main then apt-get update is failing. If i remove the second line then above command is working fine. I checked in the repositories. there is no folder with name jessie-updates. We have many docker builds which requires apt-get update. I can’t update … Read more

No internet connection inside Docker containers

I cannot execute any command requiring internet connection inside any Docker container. Works: docker run ubuntu /bin/echo ‘Hello world’ Does not work: docker run ubuntu apt-get update Err:1 http://archive.ubuntu.com/ubuntu xenial InRelease Temporary failure resolving ‘archive.ubuntu.com’ Err:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease Temporary failure resolving ‘archive.ubuntu.com’ Err:3 http://archive.ubuntu.com/ubuntu xenial-security InRelease Temporary failure resolving ‘archive.ubuntu.com’ Reading package lists… W: … Read more

How solve permission problems for docker in ubuntu?

I have installed docker as described here. I use Ubuntu Trusty 14.04 (LTS) (64-bit). Everything during installation was well. Also command $ sudo docker run -i -t ubuntu /bin/bash completes well (after I typed “exit” in opened console. But when I tryin to do something else I get “permission denied”. For example: `$ sudo docker … Read more