]> git.openstreetmap.org Git - chef.git/blob - test/integration/community/inspec/docker_spec.rb
community: Upgrade discourse to v3.5.0. Workaround mail-receiver tests on arm
[chef.git] / test / integration / community / inspec / docker_spec.rb
1 describe package("docker-ce") do
2   it { should be_installed }
3 end
4
5 describe service("docker") do
6   it { should be_enabled }
7   it { should be_running }
8 end
9
10 describe docker_image("local_discourse/data:latest") do
11   it { should exist }
12 end
13
14 describe docker_image("local_discourse/mail-receiver:latest") do
15   before do
16     skip if os.arch.include?("aarch64") # mail-receiver is not yet supported on ARM
17   end
18   it { should exist }
19 end
20
21 describe docker_image("local_discourse/web_only:latest") do
22   it { should exist }
23 end