This repository was archived by the owner on Aug 14, 2023. It is now read-only.
File tree 3 files changed +5
-5
lines changed
test-integration/spec/hypriotos-image
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -228,9 +228,9 @@ curl -sSL "https://raw.githubusercontent.com/docker/machine/v${DOCKER_MACHINE_VE
228
228
# install docker-compose
229
229
apt-get install -y \
230
230
--no-install-recommends \
231
- python
232
- curl -sSL https://bootstrap.pypa.io/get-pip.py | python
233
- pip install " docker-compose==${DOCKER_COMPOSE_VERSION} "
231
+ python3 python3-pip
232
+ update-alternatives --install /usr/bin/python python /usr/bin/python3.7 2
233
+ pip3 install " docker-compose==${DOCKER_COMPOSE_VERSION} "
234
234
235
235
# install bash completion for Docker Compose
236
236
curl -sSL " https://raw.githubusercontent.com/docker/compose/${DOCKER_COMPOSE_VERSION} /contrib/completion/bash/docker-compose" -o /etc/bash_completion.d/docker-compose
Original file line number Diff line number Diff line change 7
7
end
8
8
9
9
describe command ( 'docker-compose --version' ) do
10
- its ( :stdout ) { should match /1.23.2 /m }
10
+ its ( :stdout ) { should match /1.25.0 /m }
11
11
its ( :exit_status ) { should eq 0 }
12
12
end
13
13
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ export KERNEL_BUILD="1.20190925+1-1"
14
14
# export KERNEL_VERSION="4.19.75"
15
15
export DOCKER_CE_CHANNEL="stable" # stable, test or edge
16
16
export DOCKER_CE_VERSION="5:19.03.5~3-0~raspbian-buster"
17
- export DOCKER_COMPOSE_VERSION="1.23.2 "
17
+ export DOCKER_COMPOSE_VERSION="1.25.0 "
18
18
export DOCKER_MACHINE_VERSION="0.16.2"
You can’t perform that action at this time.
0 commit comments