Latest questions in DevOps & Agile

0 votes
1 answer

How to disable docker swarm mode?

Hi@akhtar, You can use the docker swarm leave ...READ MORE

Dec 28, 2020 in Docker by MD
• 95,440 points
1,880 views
0 votes
1 answer

How to create an overlay network in Docker swarm?

Hi@akhtar, To create an overlay network for use ...READ MORE

Dec 28, 2020 in Docker by MD
• 95,440 points
566 views
+1 vote
1 answer

How to add or remove label metadata in the swarm node?

Node labels provide a flexible method of ...READ MORE

Dec 28, 2020 in Docker by MD
• 95,440 points
3,392 views
0 votes
1 answer

How to change node availability in docker swarm?

Hi@akhtar, You can change the node availability according to ...READ MORE

Dec 28, 2020 in Docker by MD
• 95,440 points
3,205 views
0 votes
1 answer

How to delete services from Docker swarm cluster?

Hi@akhtar, You can delete your services with the ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
1,655 views
0 votes
1 answer

How to create a service in Docker swarm?

Hi@akhtar, To create a service in Docker swarm, ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
410 views
0 votes
1 answer

How to remove a worker node from the docker swarm cluster?

Hi@akhtar, To remove a worker node from the ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
5,134 views
0 votes
1 answer

How to get the hostname of the manager node in the Docker swarm?

Hi@akhtar, You can find the manager hostname using ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
3,846 views
0 votes
1 answer

How to add one worker node to the Docker swarm?

Hi@akhtar, You will get one token when you ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
953 views
+2 votes
1 answer

Error response from daemon: This node is already part of a swarm. Use "docker swarm leave" to leave this swarm and join another one.

Hi@akhtar, It is showing in the error that you ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
6,970 views
+1 vote
1 answer

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

Hi@akhtar, It seems the docker service is not ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
15,223 views
0 votes
1 answer

How to create a Docker swarm in Linux system?

Hi@akhtar, You need to initialize one node with ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
444 views
0 votes
1 answer

What is Docker Swarm?

Hi@akhtar, A Docker Swarm is a group of ...READ MORE

Dec 24, 2020 in Docker by MD
• 95,440 points
632 views
+1 vote
1 answer

How to mount a host directory in a Docker container?

Hi@akhtar, You can use the -v option in ...READ MORE

Dec 23, 2020 in Docker by MD
• 95,440 points
2,042 views
0 votes
1 answer

How to connect to the localhost of the machine from the Docker container?

Hi@akhtar, You can use --network="host" in your docker run command. It will ...READ MORE

Dec 23, 2020 in Docker by MD
• 95,440 points
11,070 views
0 votes
1 answer

How Docker is different from a virtual machine?

Hi@akhtar, Docker is container-based technology and containers are ...READ MORE

Dec 23, 2020 in Docker by MD
• 95,440 points
569 views
+1 vote
1 answer

How to abort the merge conflict in Git?

Hi@akhtar, You can use the git reset --merge ...READ MORE

Dec 23, 2020 in Git & GitHub by MD
• 95,440 points
27,465 views
0 votes
2 answers

What does cherry-picking a commit with Git mean?

To answer your question, Cherry Picking in ...READ MORE

Feb 8, 2022 in Git & GitHub by Rahul
• 9,670 points
2,678 views
0 votes
1 answer

How to make Git use the editor of our own choice for commits?

Hi@akhtar, You can set the editor name in ...READ MORE

Dec 23, 2020 in Git & GitHub by MD
• 95,440 points
379 views
0 votes
0 answers

How to find and restore a deleted file in a Git repository?

Hi Team, I have one Git repository. I ...READ MORE

Dec 22, 2020 in Git & GitHub by akhtar
• 38,230 points
672 views
0 votes
1 answer

How to get the current branch name in Git?

Hi@akhtar, You can run the git branch command ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
10,333 views
0 votes
1 answer

How to list all the files in a commit in Git?

Hi@akhtar, Using git diff-tree is considered as a preferred way ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
773 views
+1 vote
1 answer

Error: src refspec master does not match any. error: failed to push some refs to 'ssh://xxxxx.com/project.git'.

Hi@akhtar, The most probable reason for this error ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
26,859 views
+1 vote
1 answer

Difference between git add -A and git add . command.

Hi@akhtar, The difference lies in which files get ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
6,843 views
+1 vote
1 answer

How to view the change history of a file using Git versioning?

Hi@akhtar, You can use gitk for this task. ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
742 views
+1 vote
1 answer

How to create a remote Git branch?

Hi@akhtar, The easiest way is to create one ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
402 views
0 votes
1 answer

How to clone a specific Git branch?

Hi@akhtar, You need to specify the branch name ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
536 views
0 votes
1 answer

How to reset or revert a file to a specific version?

Hi@akhtar, To revert a specific file to that ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
416 views
+1 vote
1 answer

How to discard unstaged changes in Git?

Hi@akhtar, You can save the unstaged changes in ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
416 views
0 votes
1 answer

How to move the most recent commits to a new branch with Git?

Hi@akhtar, If you want to move your commits ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
589 views
0 votes
1 answer

How to force git to completely forget about a file that is present in .gitignore folder?

Hi@akhtar, gitignore file is a text file that tells Git which files or ...READ MORE

Dec 22, 2020 in Git & GitHub by MD
• 95,440 points
3,233 views
0 votes
1 answer

I could install Git, can u please explain how to set up chromedriver(selenium), chromium browser(selenium) on the slave node through Ansible

Hi@Vinodkumar, Did you go through the related question ...READ MORE

Dec 22, 2020 in Ansible by MD
• 95,440 points
1,055 views
0 votes
1 answer

How to revert a Git repository to a previous commit?

Hi@akhtar, This depends a lot on what you ...READ MORE

Dec 21, 2020 in Git & GitHub by MD
• 95,440 points
687 views
0 votes
1 answer

How to modify existing, unpushed commit messages?

Hi@akhtar, The git commit --amend command is a convenient way to modify ...READ MORE

Dec 21, 2020 in Git & GitHub by MD
• 95,440 points
1,443 views
0 votes
1 answer

How to undo the most recent local commits in Git?

Hi@akhtar, There is one way available to undo ...READ MORE

Dec 21, 2020 in Git & GitHub by MD
• 95,440 points
407 views
0 votes
1 answer

How to use Docker Machine to provision hosts on virtualbox?

Hi@akhtar,  You can run the docker-machine create command, pass the ...READ MORE

Dec 21, 2020 in Docker by MD
• 95,440 points
490 views
0 votes
1 answer

How to switch to another host in Docker Toolbox?

Hi@akhtar, You can change the host from your ...READ MORE

Dec 21, 2020 in Docker by MD
• 95,440 points
447 views
0 votes
1 answer

Re: VMSetError: Call to WHvSetupPartition failed: ERROR_SUCCESS (Last=0xc000000d/87)

Hi@akhtar, You need to run the below command ...READ MORE

Dec 21, 2020 in Docker by MD
• 95,440 points
671 views
0 votes
1 answer

I'm trying to create a simple service on kubernetes

Hi@Edureka, After you run the kubeadm init command ...READ MORE

Dec 21, 2020 in DevOps & Agile by MD
• 95,440 points
334 views
0 votes
1 answer

##[error]Command failed with errors on Ansible machine

Hi@Vicky, By default, if one task fails, then ...READ MORE

Dec 17, 2020 in Ansible by MD
• 95,440 points
3,539 views
0 votes
1 answer

What is the difference between Apache Mesos and Kubernetes?

Hi@akhtar, Kubernetes and Apache Mesos are DevOps infrastructure ...READ MORE

Dec 16, 2020 in Kubernetes by MD
• 95,440 points
858 views
0 votes
1 answer

Can we use Ansible and Rundeck together, or using either one is enough?

Hi@akhtar, It depends on your requirement. According to ...READ MORE

Dec 16, 2020 in Ansible by MD
• 95,440 points
1,500 views
+1 vote
1 answer

Ansible to rename a file if it exists

Hi@Jp, What output you are getting? Your playbook ...READ MORE

Dec 14, 2020 in Ansible by MD
• 95,440 points
3,556 views
0 votes
1 answer

How to retry a freestyle Jenkins build after a checkout error?

Hi@Rohan, I think you can use the post-build ...READ MORE

Dec 9, 2020 in DevOps & Agile by MD
• 95,440 points
972 views
0 votes
1 answer

How to remove an existing job from one view in Jenkins?

Hi@akhtar, You can remove or add jobs in ...READ MORE

Dec 8, 2020 in Jenkins by MD
• 95,440 points
12,857 views
0 votes
1 answer

How to add a timeout step to Jenkins Pipeline?

Hi@akhtar, You can execute the code inside the ...READ MORE

Dec 8, 2020 in Jenkins by MD
• 95,440 points
4,542 views
0 votes
1 answer

What is the difference between Jenkins and Maven?

Hi@akhtar, A maven is a build tool designed to manage ...READ MORE

Dec 8, 2020 in Jenkins by MD
• 95,440 points
3,422 views
0 votes
1 answer

How to build specific tag in Jenkins?

Hi@akhtar, You may able to do that by using ...READ MORE

Dec 8, 2020 in Jenkins by MD
• 95,440 points
3,784 views