You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I get "Failed Container 'docker' exceeded memory limit" on community atlassian/renovate-scan pipeline.
Any ideas how to fix this since I'm using existing pipeline from atlasian?
G'day @Roman_Kovalenko, and Welcome to community!
Based on the error you received, the pipe docker container uses more than the allocated default 1GB memory.
You'll need to increase the docker container memory to 1.5 GB or more depending on the situation as the following example:
definitions:
services:
docker:
memory: 1536 #Increase memory to 1.5 GB
If it's still failing, you'll need to use the 2x options to double up the default 4 GB memory allocated to 8 GB so you can allocate more memory in the docker services.
Example use of 2x options:
options: size: 2x pipelines: default: - step: script: - echo "test" definitions: services: docker: memory: 2048 #Increase memory to 2 GB
Hope this helps!
Cheers,
SYahrul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.