Setting Up Docker
Setting up Docker
Docker is a versatile container engine that allows application separation from the host machine and also scalability not possible with more heavy virtual machines.
-
To start installing Docker first navigate to Docker and install for corresponding platform.
-
Next make sure to install Docker Compose by navigating to Docker Compose and install for corresponding platform.
-
Make sure to start and enable Docker service on boot.
systemctl enable docker
systemctl start docker
- For Linux systems make sure to grant user permission to Docker.
sudo usermod -aG docker (username)
docker info