1
0
mirror of https://github.com/byulmaru/quesdon synced 2024-12-03 01:08:01 +09:00
quesdon/.gitlab-ci.yml

15 lines
298 B
YAML
Raw Normal View History

2018-08-07 23:39:53 +09:00
stages:
- build
build:
stage: build
image: docker:latest
services:
- docker:dind
script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- docker build --pull -t "$CI_REGISTRY_IMAGE" .
- docker push "$CI_REGISTRY_IMAGE"
only:
- master