Skip to content

Commit 3130bd4

Browse files
authored
chore: rename testing-api docker image (#78)
1 parent 387a010 commit 3130bd4

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

package-testing/sdk-test-runner/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ docker run \
1919
--rm -d \
2020
-v ./test-data:/app/test-data \
2121
-p 5000:5000 \
22-
-t Eppo-exp/test-api-server:local
22+
-t Eppo-exp/testing-api:local
2323

2424
../<SDK_DIR>/build-and-run.sh
2525

@@ -37,7 +37,7 @@ docker run \
3737
--rm -d \
3838
-v ./test-data:/app/test-data \
3939
-p 5000:5000 \
40-
-t Eppo-exp/test-api-server:local
40+
-t Eppo-exp/testing-api:local
4141

4242
../<SDK_DIR>/build-and-run.sh
4343

package-testing/sdk-test-runner/test-sdk.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ case "$command" in
107107
server)
108108
echo "... Running test scenarios against $SDK_NAME@$SDK_REF in server mode"
109109

110-
echo " ... Starting Test Cluster node [Eppo-exp/test-api-server]"
110+
echo " ... Starting Test Cluster node [Eppo-exp/testing-api]"
111111

112112
docker run \
113113
-e EPPO_API_HOST \
@@ -118,7 +118,7 @@ case "$command" in
118118
-v ./test-data:/app/test-data:ro \
119119
--rm -d \
120120
--name eppo-api \
121-
-t Eppo-exp/test-api-server:latest
121+
-t Eppo-exp/testing-api:latest
122122

123123
echo_yellow " ... Waiting to verify server is up"
124124

package-testing/testing-api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To run in docker, we need to build the docker image, provide the test data, then
9191

9292
1. Build for local use
9393
```shell
94-
docker build . -t Eppo-exp/test-api-server:local
94+
docker build . -t Eppo-exp/testing-api:local
9595
```
9696

9797
To use the local copy of test data, run
@@ -113,7 +113,7 @@ docker run \
113113
--rm \
114114
-v ./test-data:/app/test-data \
115115
-p 5000:5000 \
116-
-t Eppo-exp/test-api-server:local
116+
-t Eppo-exp/testing-api:local
117117
```
118118

119119

package-testing/testing-api/release.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33

44
VERSION=$1
55

6-
docker build . -t Eppo-exp/test-api-server:$VERSION
7-
docker tag Eppo-exp/test-api-server:$VERSION Eppo-exp/test-api-server:latest
8-
9-
# TODO push to github artifact registry.
6+
docker build . -t Eppo-exp/testing-api:$VERSION
7+
docker tag Eppo-exp/testing-api:$VERSION Eppo-exp/testing-api:latest

0 commit comments

Comments
 (0)