From e07b852642056c43ce686b2a23dce875bcd36ee3 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 25 May 2022 16:53:32 +0200 Subject: build(docker): increase CPU and Memory limits Some images failed to load and the staging build was randomly crashing with exit code 137 (memory issue). --- docker-compose.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 297ce14..443abb5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,11 +12,11 @@ services: deploy: resources: limits: - cpus: '0.2' - memory: 50M + cpus: '0.5' + memory: 100M reservations: - cpus: '0.1' - memory: 20M + cpus: '0.25' + memory: 50M env_file: - .env environment: @@ -36,11 +36,11 @@ services: deploy: resources: limits: - cpus: '0.2' - memory: 50M + cpus: '0.5' + memory: 100M reservations: - cpus: '0.1' - memory: 20M + cpus: '0.25' + memory: 50M env_file: - .env environment: -- cgit v1.2.3