2
3
mirror of https://github.com/octoleo/docker-joomla.git synced 2024-09-21 08:59:03 +00:00
docker-joomla/.travis.yml

31 lines
612 B
YAML
Raw Normal View History

2016-10-14 18:44:05 +00:00
language: bash
services: docker
env:
- VARIANT=php7.1/apache
- VARIANT=php7.1/fpm
2018-02-14 01:13:24 +00:00
- VARIANT=php7.1/fpm-alpine
- VARIANT=php7.2/apache
- VARIANT=php7.2/fpm
2018-02-14 01:13:24 +00:00
- VARIANT=php7.2/fpm-alpine
2018-12-10 17:59:42 +00:00
- VARIANT=php7.3/apache
- VARIANT=php7.3/fpm
- VARIANT=php7.3/fpm-alpine
2016-10-14 18:44:05 +00:00
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VARIANT"
- slash='/'; image="joomla:${VARIANT//$slash/-}"
script:
- docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
after_script:
- docker images
# vim:set et ts=2 sw=2: