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

38 lines
672 B
YAML
Raw Normal View History

image: leenooks/ci-docker:latest
stages:
2016-07-07 13:48:28 +00:00
- test
- build
2016-05-26 12:09:23 +00:00
services:
- leenooks/ci-docker:dind
variables:
2016-07-07 13:59:39 +00:00
VERSION: "6"
2016-05-26 12:09:23 +00:00
before_script:
2016-07-07 13:48:28 +00:00
- test -n "${REGISTRY}" # Needs to be set in project
- test -n "${IMAGE}" # Needs to be set in project
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:48:28 +00:00
test:
stage: test
script:
- docker build -t ${IMAGE}:${VERSION} .
- docker images
only:
- debug
2016-05-26 12:09:23 +00:00
build:
stage: build
script:
2016-07-07 13:48:28 +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:48:28 +00:00
only:
2016-07-07 13:59:39 +00:00
- c6