Skip to content

Commit 67f69cf

Browse files
committed
Use correct test image names
* Use the composespec namespace for the images * Update the test Compose files to use the built images Signed-off-by: Christopher Crone <[email protected]>
1 parent ba3531c commit 67f69cf

File tree

9 files changed

+12
-18
lines changed

9 files changed

+12
-18
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
PACKAGE=github.com/compose-spec/conformance-tests
16-
IMAGE_PREFIX=compose-spec/conformance-tests-
16+
IMAGE_PREFIX=composespec/conformance-tests-
1717

1818
.DEFAULT_GOAL := help
1919

tests/different_networks/compose.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@ version: '3.7'
22

33
services:
44
entry:
5-
image: test-server
6-
build: ../../server
5+
image: composespec/conformance-tests-server
76
networks:
87
- entrynetwork
98
ports:
109
- 8080:8080
1110
target:
12-
image: test-server
13-
build: ../../server
11+
image: composespec/conformance-tests-server
1412
networks:
1513
- targetnetwork
1614

tests/scaling/compose.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ version: '3.7'
22

33
services:
44
server:
5-
image: test-server
6-
build: ../../server
5+
image: composespec/conformance-tests-server
76
ports:
87
- 8080:8080
98
client:
10-
image: test-client
11-
build: ../../client
9+
image: composespec/conformance-tests-client
1210
deploy:
1311
replicas: 3

tests/simple_configfile/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.7"
22
services:
33
entry:
4-
image: test-server
4+
image: composespec/conformance-tests-server
55
ports:
66
- 8080:8080
77
configs:

tests/simple_lifecycle/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ version: '3.7'
22

33
services:
44
test1:
5-
image: test-server
5+
image: composespec/conformance-tests-server

tests/simple_network/compose.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@ version: '3.7'
22

33
services:
44
entry:
5-
image: test-server
6-
build: ../../server
5+
image: composespec/conformance-tests-server
76
networks:
87
- mynetwork
98
ports:
109
- 8080:8080
1110
target:
12-
image: test-server
13-
build: ../../server
11+
image: composespec/conformance-tests-server
1412
networks:
1513
- mynetwork
1614

tests/simple_secretfile/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.7"
22
services:
33
entry:
4-
image: test-server
4+
image: composespec/conformance-tests-server
55
ports:
66
- 8080:8080
77
secrets:

tests/simple_volume/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.7"
22
services:
33
entry:
4-
image: test-server
4+
image: composespec/conformance-tests-server
55
ports:
66
- 8080:8080
77
volumes:

tests/udp_port/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.7'
22

33
services:
44
entry:
5-
image: test-server
5+
image: composespec/conformance-tests-server
66
ports:
77
- 8080:8080/tcp
88
- target: 10001

0 commit comments

Comments
 (0)