Files
nginx-php-fpm/.gitlab-ci.yml
Ric Harvey 8dcf6aa5bd long format
2018-06-17 22:59:20 +01:00

18 lines
362 B
YAML

image: docker:latest
services:
- docker:dind
stages:
- build
before_script:
- echo Logging in to Docker Hub...
- docker login -username richarvey --password-stdin $DOCKER_PASSWORD
build:
stage: build
script:
- echo Build started on `date`
- docker build -t richarvey/nginx-php-fpm:latest .
- docker push richarvey/nginx-php-fpm:latest