aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.test.yml
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2019-03-16 14:00:59 +0100
committerGitHub <noreply@github.com>2019-03-16 14:00:59 +0100
commit47118cf8f2e3cced9a6d73b6088539d667692706 (patch)
tree81ed5c3d1cc003750b1134e6963661508765d074 /docker-compose.test.yml
parentMerge branch 'master' into portable (diff)
parentFix Docker Hub's autotest not working (diff)
downloadOpenSMTPD-47118cf8f2e3cced9a6d73b6088539d667692706.tar.xz
OpenSMTPD-47118cf8f2e3cced9a6d73b6088539d667692706.zip
Merge pull request #913 from EmperorArthur/fix_autotest
Fix Docker Hub's autotest not working
Diffstat (limited to 'docker-compose.test.yml')
-rw-r--r--docker-compose.test.yml15
1 files 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