inspec/test/cookbooks/os_prepare/recipes/docker_host.rb

27 lines
485 B
Ruby
Raw Normal View History

# author: Christoph Hartmann
if platform_family?('rhel', 'debian', 'fedora')
docker_service 'default' do
action [: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