Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

pipeline issue using docker file

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:
Screenshot from 2023-02-20 19-31-09.png

 

1 answer

1 accepted

0 votes
Answer accepted

it was resolved by disabling the buildKit :

- export DOCKER_BUILDKIT=0

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events