Running Salt Master In Docker Container From Scratch In this post, we will install salt master in docker container and configure the public IP so it will be reachable from outside. Prerequisites: Ubuntu host up and running. Public IP should be configured. Docker should be installed. Skip to end of metadata Go to start of metadat Pull Ubuntu docker image $ docker pull ubuntu:14.04.5 It will download the Ubuntu docker image. Create a container for salt master $ docker run -ti --name salt-master-server --net=none --privileged=true ubuntu:14.04.5 bash This will create a container, we will use the same container to install salt master. Now configure the network for this container. Assigning an IP for a container Here I am assuming that host machine is having interface "eth0" with public IP configured. Name of the container is salt-master-server. The below steps needs to be per...
Comments
Post a Comment