From 46ddcb129c3ed6f70eb467b75125e0444c5c83be Mon Sep 17 00:00:00 2001 From: Aashish John Date: Tue, 12 Sep 2023 04:41:38 -0400 Subject: [PATCH] fix(update-dump): add cap add flag (#1668) --- update-dump.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update-dump.sh b/update-dump.sh index ceec54389..2a917e6c4 100755 --- a/update-dump.sh +++ b/update-dump.sh @@ -7,6 +7,7 @@ echo "Spinning up Postgres Docker container..." # Start the container in the background CONTAINER_ID=$(docker container run -d \ + --cap-add SYS_RESOURCE \ --platform linux/amd64 \ -p $PG_HOST_PORT:5432 \ -e ALLOW_NOSSL=true \