0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-19 18:36:09 +02:00

Merge branch 'travis-test'

This commit is contained in:
Blagovest Petrov 2016-10-15 17:22:00 +03:00
commit a984c16b49

23
.travis.yml Normal file
View file

@ -0,0 +1,23 @@
language: bash
services: docker
env:
- VARIANT=php5.6/fpm
- VARIANT=php7.0/alpine-fpm
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VARIANT"
- slash='/'; image="nextcloud:${VARIANT//$slash/-}"
script:
- docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
after_script:
- docker images
# vim:set et ts=2 sw=2: