Commit 7d8a987007fa8299ada591ac15aaa4b8f71bc618

Authored by welton nascimento
1 parent 12a9cac8
Exists in master

Retirada de variáveis de building

pra facilitar o debug.
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
.gitlab-ci.yml
@@ -9,15 +9,15 @@ before_script: @@ -9,15 +9,15 @@ before_script:
9 build-master: 9 build-master:
10 stage: build 10 stage: build
11 script: 11 script:
12 - - docker build --pull -t "$CI_REGISTRY_IMAGE" .  
13 - - docker push "$CI_REGISTRY_IMAGE" 12 + - docker build --pull -t index.docker.io/kubesei/solr .
  13 + - docker push index.docker.io/kubesei/solr
14 only: 14 only:
15 - master 15 - master
16 16
17 build: 17 build:
18 stage: build 18 stage: build
19 script: 19 script:
20 - - docker build --pull -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" .  
21 - - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" 20 + - docker build --pull -t "index.docker.io/kubesei/solr:$CI_COMMIT_REF_SLUG" .
  21 + - docker push "index.docker.io/kubesei/solr:$CI_COMMIT_REF_SLUG"
22 except: 22 except:
23 - master 23 - master