Files
nginx-php-fpm/.gitlab-ci.yml
2020-08-03 10:07:28 +01:00

20 lines
371 B
YAML

image: docker:latest
services:
- docker:dind
stages:
- build_latest
before_script:
- echo Logging in to $CI_REGISTRY...
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD"
- docker info | grep Registry
build_latest:
stage: build_latest
script:
- echo Build started on `date` for $CI_COMMIT_REF_NAME
- ./build.sh
only:
- master