This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
base/.gitlab-ci.yml

35 lines
552 B
YAML
Raw Normal View History

image: leenooks/ci-docker:latest
stages:
- build
2016-05-26 12:09:23 +00:00
services:
- leenooks/ci-docker:dind
variables:
2016-07-07 13:29:56 +00:00
VERSION: 6
2016-05-26 12:09:23 +00:00
before_script:
2016-07-07 13:29:56 +00:00
- env|sort
2016-05-26 12:09:23 +00:00
- docker info
- docker version
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN ${REGISTRY}
2016-05-26 12:09:23 +00:00
2016-07-07 13:29:56 +00:00
test:
stage: test
script:
- docker build -t ${IMAGE}:${VERSION} .
only:
- debug
2016-05-26 12:09:23 +00:00
build:
stage: build
script:
2016-07-07 13:29:56 +00:00
- docker build -t ${IMAGE}:${VERSION} .
- docker tag ${IMAGE}:${VERSION} ${REGISTRY}/${IMAGE}:${VERSION}
- docker push ${REGISTRY}/${IMAGE}:${VERSION}
tags:
- docker
2016-07-07 13:29:56 +00:00
only:
- c6