#Day 34 Jenkins Declarative Pipeline with DockerTask-01 Create a docker-integrated Jenkins declarative pipeline Use the above-given syntax using sh inside the stage block Navigate to Jenkins and click on the new item. Create a pipeline project and enter the name and select pipeline and click on ...Jun 11, 2023·2 min read
Basic Git & GitHubWhat is Git? GIT is an open-source Distributed Version Control System (DVCS) that records changes made in your project or a set of files emphasizing speed, data integrity and distributed non-linear workflows. Git is one of the best version control to...Jun 11, 2023·5 min read
#29 Getting start with Jenkins.What is CI/CD? CI/CD stands for Continuous Integration/Continuous Delivery (or Continuous Deployment), which is a set of practices and methodologies used in software development to achieve rapid and reliable delivery of software applications. Contin...Jun 10, 2023·3 min read
#27 Docker ComposeLecture-15 Docker Compose Part-1 Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the ser...Jun 10, 2023·2 min read
#26 Docker FileLecture-9 Dockerfile Part-1 A Dockerfile is a text document that contains all the commands you would normally execute manually to build a Docker image. Docker can build images automatically by reading the instructions from a Docker file. In a Docker...Jun 10, 2023·4 min read
#Docker 25 Host your own docker registry Lecture -6 Host your own docker registryInstead of pushing the custom images to the docker hub locally itself docker registry will be created. Lecture -7 Host your own docker registry Lab Part-1 Setting up for the root password: Go to the vim /etc/ssh/sshd_config PermitRootLogin yes Pa...Jun 10, 2023·1 min read
#24 Docker-Create Image, Push and Pull From Docker HUBLecture -4 How to Create Image, Push and Pull From Docker HUB Docker HUB: Want to send an image to the hub: For that, you need to give a proper unique tag name. If you send it to private repo need to give a path for that for the public it...Jun 9, 2023·2 min read