Add new file
This commit is contained in:
parent
19deb73114
commit
6bd6665f63
35
.gitlab-ci.yml
Normal file
35
.gitlab-ci.yml
Normal file
@ -0,0 +1,35 @@
|
||||
image: docker:git
|
||||
services:
|
||||
- docker:dind
|
||||
|
||||
stages:
|
||||
- test
|
||||
- release
|
||||
|
||||
variables:
|
||||
CONTAINER_TEST_IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:$CI_BUILD_REF_NAME
|
||||
CONTAINER_RELEASE_IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:latest
|
||||
|
||||
before_script:
|
||||
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
|
||||
|
||||
test:
|
||||
stage: test
|
||||
script:
|
||||
- docker version
|
||||
- docker build -t $CONTAINER_TEST_IMAGE .
|
||||
only:
|
||||
- master
|
||||
tags:
|
||||
- dockerbuild
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- docker version
|
||||
- docker build -t $CONTAINER_RELEASE_IMAGE .
|
||||
- docker push $CONTAINER_RELEASE_IMAGE
|
||||
only:
|
||||
- master
|
||||
tags:
|
||||
- dockerbuild
|
Loading…
Reference in New Issue
Block a user