We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6084df9 commit 775a629Copy full SHA for 775a629
docker-compose.test.yml
@@ -0,0 +1,11 @@
1
+version: '3.5'
2
+services:
3
+ app:
4
+ build: .
5
+ sut:
6
+ image: alpine:3.10
7
+ depends_on:
8
+ - app
9
+ command: /tmp/run_tests.sh
10
+ volumes:
11
+ - "./run_tests.sh:/tmp/run_tests.sh:ro"
run_tests.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+apk --no-cache add curl
+curl --silent --fail http://app:8080 | grep 'PHP 7.3'
0 commit comments