We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c328367 commit ae05091Copy full SHA for ae05091
install/_min-requirements.sh
@@ -4,6 +4,10 @@ MIN_COMPOSE_VERSION='2.32.2'
4
5
# 16 GB minimum host RAM, but there'll be some overhead outside of what
6
# can be allotted to docker
7
-MIN_RAM_HARD=14000 # MB
8
-
9
-MIN_CPU_HARD=4
+if [[ "$COMPOSE_PROFILES" == "errors-only" ]]; then
+ MIN_RAM_HARD=7000 # MB
+ MIN_CPU_HARD=2
10
+else
11
+ MIN_RAM_HARD=14000 # MB
12
+ MIN_CPU_HARD=4
13
+fi
0 commit comments