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
my pipeline is very simple:
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.