This repository was archived by the owner on Aug 14, 2023. It is now read-only.
File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ QEMU_ARCH="arm"
28
28
export HYPRIOT_IMAGE_VERSION
29
29
30
30
# specific versions of kernel/firmware and docker tools
31
- export DOCKER_ENGINE_VERSION=" 1.9.1 -1"
32
- export DOCKER_COMPOSE_VERSION=" 1.5.2-80 "
31
+ export DOCKER_ENGINE_VERSION=" 1.10.0 -1"
32
+ export DOCKER_COMPOSE_VERSION=" 1.6.0-27 "
33
33
export DOCKER_MACHINE_VERSION=" 0.4.1-72"
34
34
35
35
# create build directory for assembling our image filesystem
Original file line number Diff line number Diff line change 10
10
end
11
11
12
12
describe command ( 'docker images hypriot/rpi-swarm' ) do
13
- its ( :stdout ) { should match /hypriot\/ rpi-swarm .*latest .*483554c63182 / }
13
+ its ( :stdout ) { should match /hypriot\/ rpi-swarm .*latest .*5eab982fa301 / }
14
14
its ( :exit_status ) { should eq 0 }
15
15
end
Original file line number Diff line number Diff line change 6
6
7
7
describe command ( 'dpkg -l docker-compose' ) do
8
8
its ( :stdout ) { should match /ii docker-compose/ }
9
- its ( :stdout ) { should match /1.5.2-80 / }
9
+ its ( :stdout ) { should match /1.6.0-27 / }
10
10
its ( :exit_status ) { should eq 0 }
11
11
end
12
12
17
17
end
18
18
19
19
describe command ( 'docker-compose --version' ) do
20
- its ( :stdout ) { should match /1.5.2 /m }
20
+ its ( :stdout ) { should match /1.6.0 /m }
21
21
its ( :exit_status ) { should eq 0 }
22
22
end
Original file line number Diff line number Diff line change 6
6
7
7
describe command ( 'dpkg -l docker-hypriot' ) do
8
8
its ( :stdout ) { should match /ii docker-hypriot/ }
9
- its ( :stdout ) { should match /1.9.1 -1/ }
9
+ its ( :stdout ) { should match /1.10.0 -1/ }
10
10
its ( :exit_status ) { should eq 0 }
11
11
end
12
12
35
35
36
36
describe file ( '/var/lib/docker' ) do
37
37
it { should be_directory }
38
- it { should be_mode 700 }
38
+ it { should be_mode 701 }
39
39
it { should be_owned_by 'root' }
40
40
end
41
41
47
47
end
48
48
49
49
describe command ( 'docker -v' ) do
50
- its ( :stdout ) { should match /Docker version 1.9.1 , build/ }
50
+ its ( :stdout ) { should match /Docker version 1.10.0 , build/ }
51
51
its ( :exit_status ) { should eq 0 }
52
52
end
53
53
54
54
describe command ( 'docker version' ) do
55
- its ( :stdout ) { should match /Client:. Version: 1.9.1 . API version: 1.21 /m }
56
- its ( :stdout ) { should match /Server:. Version: 1.9.1 . API version: 1.21 /m }
55
+ its ( :stdout ) { should match /Client:. Version: 1.10.0 . API version: 1.22 /m }
56
+ its ( :stdout ) { should match /Server:. Version: 1.10.0 . API version: 1.22 /m }
57
57
its ( :exit_status ) { should eq 0 }
58
58
end
59
59
You can’t perform that action at this time.
0 commit comments