🐳Docker Setup

In this section, we will install docker, create images, build containers and much more. Let's Set SAIL!

To install Docker run the following commands:

#sudo chmod 666 /var/run/docker.sock

the command sudo chmod 666 /var/run/docker.sock modifies the permissions of the Docker daemon socket file (docker.sock) located at /var/run/docker.sock to grant read and write permissions to all users on the system.

Last updated