I am about to set up a pipline based on a docker image for my node js project.
this is my yaml file:
image: docker:latest
pipelines:
branches:
develop:
- step:
name: Build and Deploy develop
caches:
- docker
services:
- docker
script:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- export DOCKER_BUILDKIT=1
- docker build -t api .
- docker tag api repo/api:latest
- docker push repo/api:latest
every time when the pipeline is launched i got this error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.