Skip to content

Commit ca44d13

Browse files
committed
Add PHP nightly container for checks
1 parent 117455f commit ca44d13

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.docker/docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ services:
1212
build: ./php-7.1
1313
volumes:
1414
- ./../:/app
15+
nightly:
16+
build: ./nightly
17+
volumes:
18+
- ./../:/app
1519
hhvm:
1620
build: ./hhvm
1721
volumes:

.docker/nightly/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM tommymuehle/docker-alpine-php-nightly:latest
2+
VOLUME ["/app"]
3+
WORKDIR /app

.docker/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ execute() {
4747
docker-compose build &>/dev/null
4848
docker-compose up -d &>/dev/null
4949

50-
VERSIONS=( "php-5.6" "php-7.0" "php-7.1" "hhvm" )
50+
VERSIONS=( "php-5.6" "php-7.0" "php-7.1" "nightly" "hhvm" )
5151
for VERSION in "${VERSIONS[@]}"
5252
do
5353
printf "\033c"

0 commit comments

Comments
 (0)