File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -462,6 +462,8 @@ jobs:
462
462
command : |
463
463
cd tests/e2e && export TEST_FILES=$(circleci tests glob "tests/web/**/*.e2e.ts" | circleci tests split --split-by=timings) && cd ../..
464
464
TEST_BIG_DB_DUMP=$TEST_BIG_DB_DUMP \
465
+ RI_SERVER_TLS_CERT="$RI_SERVER_TLS_CERT" \
466
+ RI_SERVER_TLS_KEY="$RI_SERVER_TLS_KEY" \
465
467
docker-compose \
466
468
-f tests/e2e/rte.docker-compose.yml \
467
469
-f tests/e2e/docker.web.docker-compose.yml \
@@ -476,6 +478,8 @@ jobs:
476
478
command : |
477
479
cd tests/e2e && export TEST_FILES=$(circleci tests glob "tests/web/**/*.e2e.ts" | circleci tests split --split-by=timings) && cd ../..
478
480
TEST_BIG_DB_DUMP=$TEST_BIG_DB_DUMP \
481
+ RI_SERVER_TLS_CERT="$RI_SERVER_TLS_CERT" \
482
+ RI_SERVER_TLS_KEY="$RI_SERVER_TLS_KEY" \
479
483
docker-compose \
480
484
-f tests/e2e/rte.docker-compose.yml \
481
485
-f tests/e2e/local.web.docker-compose.yml \
@@ -871,8 +875,6 @@ jobs:
871
875
fi
872
876
873
877
docker build --build-arg NODE_ENV=<< parameters.env >> \
874
- --build-arg RI_SERVER_TLS_CERT="$RI_SERVER_TLS_CERT" \
875
- --build-arg RI_SERVER_TLS_KEY="$RI_SERVER_TLS_KEY" \
876
878
--build-arg RI_SEGMENT_WRITE_KEY="$TELEMETRY" \
877
879
-t riv2:latest .
878
880
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ services:
41
41
image : riv2:latest
42
42
env_file :
43
43
- ./.env
44
+ environment :
45
+ RI_SERVER_TLS_CERT : $RI_SERVER_TLS_CERT
46
+ RI_SERVER_TLS_KEY : $RI_SERVER_TLS_KEY
44
47
volumes :
45
48
- rihomedir:/data
46
49
- tmp:/tmp
Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ services:
45
45
build :
46
46
context : ./../../
47
47
dockerfile : Dockerfile
48
+ environment :
49
+ RI_SERVER_TLS_CERT : $RI_SERVER_TLS_CERT
50
+ RI_SERVER_TLS_KEY : $RI_SERVER_TLS_KEY
48
51
volumes :
49
52
- .redisinsight-app:/root/.redisinsight-app
50
53
- ./test-data/certs:/root/certs
You can’t perform that action at this time.
0 commit comments