Puppet with Docker: How I Tested Master and Agent
What I Did I wanted to try Puppet without dedicating two full VMs. I ran a Puppet master and agent in separate Ubuntu Docker containers on my machine. Docker host commands work the same on Ubuntu and Arch. Installing Puppet Master Download the Ubuntu image: sudo docker pull ubuntu Create a container for Puppet master: sudo docker run --name puppet-master -it ubuntu exit Start the container: sudo docker start puppet-master Open the bash shell of the Puppet master container: ...