Files
nginx-php-fpm/.gitlab-ci.yml
2018-06-18 18:17:29 +01:00

18 lines
371 B
YAML

image: docker:latest
services:
- docker:dind
stages:
- build
before_script:
- echo Logging in to Docker Hub...
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
build:
stage: build
script:
- echo Build started on `date`
- docker build -t richarvey/nginx-php-fpm:latest .
- docker push richarvey/nginx-php-fpm:latest