Hi everybodfy,
I am learning to use gitlab cicd and docker on this git PowaBanga / flask · GitLab
here is my gitlab-ci.yml
stages:
- build
- push
- pull
Builekjer:
stage: build
script:
- docker build -t powabanga/flask:latest .
Pushekjer:
stage: push
before_script:
- docker login -u $DOCKER_USER --password-stdin $DOCKER_PASWD
script:
- docker push powabanga/flask:latest
Pulldekjer:
stage: pull
script:
- docker pull powabanga/flask:lates
The first stage succes, but the second fail, without show to me any console and/or errors…
Does anybody can help me what’s wrong with me and how to find where is from the problem ?