File tree Expand file tree Collapse file tree 14 files changed +64
-16
lines changed Expand file tree Collapse file tree 14 files changed +64
-16
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,11 @@ if [ ! -x "docker/${BENCHBASE_PROFILE}-latest/up.sh" ]; then
21
21
echo " ERROR: No docker up.sh script available for '$BENCHBASE_PROFILE '"
22
22
fi
23
23
24
- pushd " docker/${BENCHBASE_PROFILE} -latest"
25
- ./up.sh
26
- popd
24
+ " ./docker/${BENCHBASE_PROFILE} -latest/up.sh"
27
25
28
26
SKIP_TESTS=${SKIP_TESTS:- true} EXTRA_DOCKER_ARGS=" --network=host" \
29
27
./docker/benchbase/run-full-image.sh \
30
28
--config " config/sample_${benchmark} _config.xml" --bench " $benchmark " \
31
29
--create=true --load=true --execute=true \
32
30
--sample 1 --interval-monitor 1000 \
33
- --json-histograms results/histograms.json
31
+ --json-histograms results/histograms.json
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose down --remove-orphans --volumes
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose down --remove-orphans --volumes
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose up -d --build
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose up -d --build
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker-compose down --remove-orphans --volumes
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker-compose down --remove-orphans --volumes
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker-compose up -d
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker-compose up -d
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose down --remove-orphans --volumes
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose down --remove-orphans --volumes
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose up -d
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose up -d
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose down --remove-orphans --volumes
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose down --remove-orphans --volumes
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose up -d
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose up -d
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- docker compose down --remove-orphans --volumes
3
+ set -eu
4
+ scriptdir=$( dirname " $( readlink -f " $0 " ) " )
5
+ cd " $scriptdir /"
6
+
7
+ docker compose down --remove-orphans --volumes
You can’t perform that action at this time.
0 commit comments