Skip to main content

Posts

Showing posts with the label running salt minion in docker container
How To Run Salt-Minion In Docker Container In this post we will use a Ubuntu based docker image in which I have already installed the salt-minion and  uploaded it into docker hub. Now if you are looking for installing the salt-minion in docker container from scratch then check out my other guide .    Here I am assuming that you are having Ubuntu host up and running with public IP configured on it. Skip to end of metadata Go to start of metadata Pull the docker image $ docker pull yogeshprasadkurmi/ubuntu-salt-minion This is a Ubuntu 14.04.5 based image with salt-minion installed on it. Salt-minion will be up and running if you create the container using this images. Create salt minion agent $ docker run -ti --name salt-minion-agent  --net=none --privileged=true yogeshprasadkurmi/ubuntu-salt-minion bash This will create a container with salt-minion installed on it. Assigning an IP for a container H...