inspec/test/cookbooks/os_prepare/recipes/docker_host.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -07:00

25 lines
456 B
Ruby

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