This post covers the details on how to expose docker daemon securely.
Installing the docker on the local machine or VM is quite easy and straight forward, but that comes with a cost, which is local resources like RAM, CPU & these both impacts the battery 🪫.
What if for zero or almost no price, you get a VM on cloud providers like AWS(free tier), Azure(with free credits/tier), GCP(with free credits) or may be Oracle Cloud or for that matter any other cheaper alternatives!
Installing the Docker as usual.
Setup commands for Ubuntu:-
# uninstall conflicting packages for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done