From abdcb36c44bfa081a28d4a625abfa052e45973df Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 4 Dec 2024 19:52:17 +0530 Subject: [PATCH] chore: format --- docker-compose.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4b0d59f1..41372cf2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -57,9 +57,8 @@ services: CHROMIUM_FLAGS: '--disable-gpu --no-sandbox --headless=new' security_opt: - seccomp=unconfined # This might help with browser sandbox issues - # Increase shared memory size for Chromium - shm_size: '2gb' - mem_limit: 2g # Set a 2GB memory limit + shm_size: '2gb' # Increase shared memory size for Chromium + mem_limit: 2g # Set a 2GB memory limit depends_on: - postgres - redis @@ -82,7 +81,7 @@ services: BACKEND_URL: ${BACKEND_URL} volumes: - ./:/app # Mount entire frontend app directory for hot reloading - - /app/node_modules # Anonymous volume to prevent overwriting node_modules + - /app/node_modules # Anonymous volume to prevent overwriting node_modules depends_on: - backend