Let’s learn Docker and set it up.

What’s Docker?

Complicated haha!

It’s a way to install, maintain and run applications.

But apps are self-contained, hence containers.

Docker allows networking and lots more.

How to setup Docker

Best way is to follow the docs.

Troubleshooting Docker

You might see an error such as

  • WARNING: Error loading config file: /root/.docker/config.json: read /root/.docker/config.json: is a directory

For that, do the following from here:

sudo rm -fr /root/.docker/config.json

sudo echo '{"credsStore":"wincred"}' >> /root/.docker/config.json

Thanks for reading