Enable automated builds

This commit is contained in:
paul 2017-09-09 18:00:33 +02:00 committed by Hive
parent 70ffd9b09c
commit 3dd760bfad
1 changed files with 35 additions and 0 deletions

35
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,35 @@
# Official docker image for docker.
image: docker:latest
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
stages:
- build
- deploy
build-master:
stage: build
image: "docker:latest"
tags:
- dind
script:
- docker build -t "$CI_REGISTRY_IMAGE" .
- docker push "$CI_REGISTRY_IMAGE"
only:
- master
build:
stage: build
image: "docker:latest"
tags:
- dind
script:
- docker build -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" .
- docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
except:
- master