File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
internal/certification/scripts Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,13 @@ sudo add-apt-repository \
36
36
$( lsb_release -cs) \
37
37
stable"
38
38
sudo apt-get update
39
- sudo apt-get -y install docker-ce python-pip
39
+ sudo apt-get -y install docker-ce
40
40
41
41
# Dockerize
42
42
export DOCKERIZE_VERSION=v0.6.1
43
43
wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION /dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION .tar.gz \
44
44
&& tar -C /usr/local/bin -xzvf dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION .tar.gz \
45
45
&& rm dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION .tar.gz
46
- sudo pip install docker-compose
47
46
48
47
git clone https://github.com/ory/hydra-login-consent-node.git
49
48
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ DB=${DB:-postgres}
4
4
TRACING=${TRACING:- false}
5
5
PROMETHEUS=${PROMETHEUS:- false}
6
6
7
- DC=" docker- compose -f quickstart.yml"
7
+ DC=" docker compose -f quickstart.yml"
8
8
if [[ $DB == " mysql" ]]; then
9
9
DC+=" -f quickstart-mysql.yml"
10
10
fi
20
20
DC+=" up --build"
21
21
22
22
$DC
23
-
Original file line number Diff line number Diff line change 3
3
set -euxo pipefail
4
4
cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.."
5
5
6
- docker- compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml down -v
6
+ docker compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml down -v
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ set -euxo pipefail
4
4
cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.."
5
5
6
6
# shellcheck disable=SC2086
7
- docker- compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml up ${1:- } -d --force-recreate --build
7
+ docker compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml up ${1:- } -d --force-recreate --build
You can’t perform that action at this time.
0 commit comments