32
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2024-05-30 04:40:50 +00:00
docker/.travis.yml
2019-11-29 20:01:54 +01:00

28 lines
533 B
YAML

language: bash
services: docker
env:
- VARIANT=php7.2/apache
- VARIANT=php7.2/fpm
- VARIANT=php7.2/fpm-alpine
- VARIANT=php7.3/apache
- VARIANT=php7.3/fpm
- VARIANT=php7.3/fpm-alpine
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: