inspec/test/kitchen/cookbooks/os_prepare/recipes/docker_host.rb
Miah Johnson 97a258ae69 Use a more obvious directory structure for kitchen testing
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -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