We use Docker to run our applications in software containers. To install Docker, follow the steps below for your preferred OS.
Install Docker for Mac from https://docs.docker.com/docker-for-mac/install.
Install Docker for Windows from https://docs.docker.com/docker-for-windows/install.
Install Docker by running the following command:
curl -sSL https://get.docker.com/ | sh
Then install Docker Compose by following the instructions here.
Finally, assign yourself to the Docker group:
sudo usermod -aG docker $(whoami)