use gitlab docker registry

This commit is contained in:
Sebastian Hugentobler 2017-10-01 16:28:24 +02:00
parent c7e4e2a3d5
commit 575c60b434
3 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*~ *~
.DS_Store .DS_Store
*.swp

10
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,10 @@
build:
image: docker:latest
services:
- docker:dind
stage: build
script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build --pull --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA .
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA

View File

@ -1,4 +1,4 @@
FROM quay.io/thallian/php7-fpm:latest FROM registry.gitlab.com/thallian/docker-php7-fpm:latest
ENV VERSION 1.3.0 ENV VERSION 1.3.0