2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-23 00:44:57 +02:00
docker/.travis.yml
Philipp Holzer 6ea2875ebf
Init the Friendica Docker Repository
- Added develop images (apache, fpm, fpm-alpine)
- Added stable images 3.6 (apache, fpm, fpm-alpine)
- Added .travis.yml for testing
2018-05-18 21:20:22 +02:00

25 lines
513 B
YAML

language: bash
services: docker
env:
- VARIANT=stable/apache
- VARIANT=stable/fpm
- VARIANT=stable/fpm-alpine
- VARIANT=develop/apache
- VARIANT=develop/fpm
- VARIANT=develop/fpm-alpine
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VARIANT"
- slash='/'; image="friendica:${VARIANT//$slash/-\"
script:
- docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
after_script:
- docker images