mirror of
https://github.com/octoleo/docker-joomla.git
synced 2024-11-10 22:40:55 +00:00
26 lines
455 B
YAML
26 lines
455 B
YAML
language: bash
|
|
services: docker
|
|
|
|
env:
|
|
- VARIANT=apache
|
|
- VARIANT=apache-php7
|
|
- VARIANT=fpm
|
|
- VARIANT=fpm-php7
|
|
|
|
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:
|