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 117455f commit ca44d13Copy full SHA for ca44d13
.docker/docker-compose.yml
@@ -12,6 +12,10 @@ services:
12
build: ./php-7.1
13
volumes:
14
- ./../:/app
15
+ nightly:
16
+ build: ./nightly
17
+ volumes:
18
+ - ./../:/app
19
hhvm:
20
build: ./hhvm
21
.docker/nightly/Dockerfile
@@ -0,0 +1,3 @@
1
+FROM tommymuehle/docker-alpine-php-nightly:latest
2
+VOLUME ["/app"]
3
+WORKDIR /app
.docker/run.sh
@@ -47,7 +47,7 @@ execute() {
47
docker-compose build &>/dev/null
48
docker-compose up -d &>/dev/null
49
50
-VERSIONS=( "php-5.6" "php-7.0" "php-7.1" "hhvm" )
+VERSIONS=( "php-5.6" "php-7.0" "php-7.1" "nightly" "hhvm" )
51
for VERSION in "${VERSIONS[@]}"
52
do
53
printf "\033c"
0 commit comments