inspec/test/cookbooks/os_prepare/recipes/docker_host.rb
Miah Johnson a4f4fe5231 chefstyle -a; https://github.com/chef/chefstyle/pull/74
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-07-08 17:22:50 -07:00

24 lines
454 B
Ruby

if platform_family?("rhel", "debian", "fedora")
docker_service "default" do
action %i{create start}
end
docker_image "busybox" do
action :pull
end
docker_image "alpine" do
action :pull
end
docker_container "an-echo-server" do
repo "busybox"
port "1234:1234"
command "nc -ll -p 1234 -e /bin/cat"
end
docker_container "an-echo-server-2" do
repo "busybox"
command "nc -ll -p 1234 -e /bin/cat"
end
end