From bc5198b7cfb54a91f02b30959ad7bb6626894764 Mon Sep 17 00:00:00 2001 From: Arthur Moore Date: Fri, 15 Mar 2019 16:00:02 -0400 Subject: Fix Docker Hub's autotest not working --- docker-compose.test.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docker-compose.test.yml b/docker-compose.test.yml index b86b38a5..1529b368 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -1,6 +1,9 @@ -sut: - build: . - #This means we are using the build container, not the final container - target: build - entrypoint: /bin/sh - command: /opensmtpd/tests/test_all.sh +version: '3.4' +services: + sut: + build: + context: . + #This means we are using the build container, not the final container + target: build + entrypoint: /bin/sh + command: /opensmtpd/tests/test_all.sh -- cgit v1.2.3-59-g8ed1b