81 lines
No EOL
2.3 KiB
YAML
81 lines
No EOL
2.3 KiB
YAML
language: bash
|
|
|
|
before_script:
|
|
- docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD $DOCKER_REGISTRY
|
|
- sudo rm /usr/local/bin/docker-compose
|
|
- curl -L https://github.com/docker/compose/releases/download/1.21.0/docker-compose-`uname -s`-`uname -m` > docker-compose
|
|
- chmod +x docker-compose
|
|
- sudo mv docker-compose /usr/local/bin
|
|
|
|
script:
|
|
- make $BUILD
|
|
|
|
deploy:
|
|
provider: script
|
|
script: docker push $BUILD
|
|
on:
|
|
branch: master
|
|
|
|
notifications:
|
|
email:
|
|
- matthew@baggett.me
|
|
|
|
env:
|
|
- BUILD=gone/marshall
|
|
- BUILD=gone/node:8
|
|
- BUILD=gone/node:8-onbuild
|
|
- BUILD=gone/node:8-compiler
|
|
- BUILD=gone/node:8-compiler-onbuild
|
|
- BUILD=gone/node:10
|
|
- BUILD=gone/node:10-onbuild
|
|
- BUILD=gone/node:10-compiler
|
|
- BUILD=gone/node:10-compiler-onbuild
|
|
- BUILD=gone/node:11
|
|
- BUILD=gone/node:11-onbuild
|
|
- BUILD=gone/node:11-compiler
|
|
- BUILD=gone/node:11-compiler-onbuild
|
|
- BUILD=gone/node:12
|
|
- BUILD=gone/node:12-onbuild
|
|
- BUILD=gone/node:12-compiler
|
|
- BUILD=gone/node:12-compiler-onbuild
|
|
- BUILD=gone/php:core-56
|
|
- BUILD=gone/php:core-70
|
|
- BUILD=gone/php:core-71
|
|
- BUILD=gone/php:core-72
|
|
- BUILD=gone/php:core-73
|
|
- BUILD=gone/php:cli-56
|
|
- BUILD=gone/php:cli-56-onbuild
|
|
- BUILD=gone/php:cli-70
|
|
- BUILD=gone/php:cli-70-onbuild
|
|
- BUILD=gone/php:cli-71
|
|
- BUILD=gone/php:cli-71-onbuild
|
|
- BUILD=gone/php:cli-72
|
|
- BUILD=gone/php:cli-72-onbuild
|
|
- BUILD=gone/php:cli-73
|
|
- BUILD=gone/php:cli-73-onbuild
|
|
- BUILD=gone/php:apache-56
|
|
- BUILD=gone/php:apache-56-onbuild
|
|
- BUILD=gone/php:apache-70
|
|
- BUILD=gone/php:apache-70-onbuild
|
|
- BUILD=gone/php:apache-71
|
|
- BUILD=gone/php:apache-71-onbuild
|
|
- BUILD=gone/php:apache-72
|
|
- BUILD=gone/php:apache-72-onbuild
|
|
- BUILD=gone/php:apache-73
|
|
- BUILD=gone/php:apache-73-onbuild
|
|
- BUILD=gone/php:nginx-56
|
|
- BUILD=gone/php:nginx-56-onbuild
|
|
- BUILD=gone/php:nginx-70
|
|
- BUILD=gone/php:nginx-70-onbuild
|
|
- BUILD=gone/php:nginx-71
|
|
- BUILD=gone/php:nginx-71-onbuild
|
|
- BUILD=gone/php:nginx-72
|
|
- BUILD=gone/php:nginx-72-onbuild
|
|
- BUILD=gone/php:nginx-73
|
|
- BUILD=gone/php:nginx-73-onbuild
|
|
- BUILD=gone/php:cli-latest
|
|
- BUILD=gone/php:cli-onbuild-latest
|
|
- BUILD=gone/php:apache-latest
|
|
- BUILD=gone/php:apache-onbuild-latest
|
|
- BUILD=gone/php:nginx-latest
|
|
- BUILD=gone/php:nginx-onbuild-latest |