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 9 build-master:
10 10 stage: build
11 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 14 only:
15 15 - master
16 16  
17 17 build:
18 18 stage: build
19 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 22 except:
23 23 - master
... ...