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

Container 'docker' exceeded memory limit.

Vishal_infy March 23, 2020

We are facing the above error (Mentioned in the title) while running the bitbucket yml file. We have tried substituting the value by taking https://community.atlassian.com/t5/Bitbucket-questions/Pipelines-Exceeded-Memory-Limit-Container-exceeded-memory-limit/qaq-p/1040776 as reference but still landed up with the same error.

 

Can someone mentioned what needs to be updated here?

 

Bitbucket-pipelines.yml file:

image: atlassian/default-image:2

clone:
depth: full

definitions:
caches:
sonar: ~/.sonar/cache
steps:
- step: &sonarcloud
name: Analyze on SonarCloud
caches:
- sonar
script:
- pipe: sonarsource/sonarcloud-scan:0.1.5
variables:
SONAR_TOKEN: ${SONAR_TOKEN}
pipelines:
branches:
'*':
- step: *sonarcloud

1 answer

0 votes
Radek Antoniuk
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 25, 2020

Try to use newer version of the pipe, the one that you are using (0.1.5) is really old.
The current version is 1.0.1.

If that doesn't work, you will need to experiment with the docker memory settings and/or with the node size.
See https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html

Try overriding the size for the single step that is failing:

    - step:
        size: 2x # Double resources available for this step.

or 

definitions:
  services:
    docker:
      memory: 2048  
Kevin Coy August 25, 2021

This seems to be an overwhelming recommendation, yet it does not work for me. I'm still running out of docker memory: "Container 'docker' exceeded memory limit."

Any other thoughts. This is happening for me when scanning a fairly large Angular project.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events