Microservice Project
  • 🤓11 Microservice CICD Pipeline using Jenkins, EKS and CloudFormation
  • Installing Tools
  • 🤖Jenkins setup
    • Installing Plugins in jenkins
  • 🐳Docker Setup
  • 🏃‍♂️Continuous Integration with GitHub and Jenkins
  • 🏃‍♂️Continuous Deployment with EKS
    • Create Service Account, Role & Assign that role
  • 👷Project Structure & summary.
Powered by GitBook
On this page

🐳Docker Setup

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

PreviousInstalling Plugins in jenkinsNext🏃‍♂️Continuous Integration with GitHub and Jenkins

Last updated 1 year ago

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.