Convert string to integer for ulimits.nofile
Before this commit: > make overview metrics services.rmq1.ulimits.nofile.hard must be a integer make: *** [Makefile:68: overview] Error 15 Accoring to the docs https://docs.docker.com/compose/compose-file/compose-file-v3/#ulimits this must be an integer.
This commit is contained in:
parent
6f5c4118ea
commit
47d572908d
|
@ -41,8 +41,8 @@ services:
|
||||||
# we want to simulate hitting thresholds
|
# we want to simulate hitting thresholds
|
||||||
ulimits:
|
ulimits:
|
||||||
nofile:
|
nofile:
|
||||||
soft: "2000"
|
soft: 2000
|
||||||
hard: "2000"
|
hard: 2000
|
||||||
rmq1-dist-metrics:
|
rmq1-dist-metrics:
|
||||||
<< : *rabbitmq
|
<< : *rabbitmq
|
||||||
hostname: rmq1-dist-metrics
|
hostname: rmq1-dist-metrics
|
||||||
|
|
|
@ -41,8 +41,8 @@ services:
|
||||||
# we want to simulate hitting thresholds
|
# we want to simulate hitting thresholds
|
||||||
ulimits:
|
ulimits:
|
||||||
nofile:
|
nofile:
|
||||||
soft: "2000"
|
soft: 2000
|
||||||
hard: "2000"
|
hard: 2000
|
||||||
rmq1-dist-tls:
|
rmq1-dist-tls:
|
||||||
<< : *rabbitmq
|
<< : *rabbitmq
|
||||||
hostname: rmq1-dist-tls
|
hostname: rmq1-dist-tls
|
||||||
|
|
|
@ -38,8 +38,8 @@ services:
|
||||||
# we want to simulate hitting thresholds
|
# we want to simulate hitting thresholds
|
||||||
ulimits:
|
ulimits:
|
||||||
nofile:
|
nofile:
|
||||||
soft: "2000"
|
soft: 2000
|
||||||
hard: "2000"
|
hard: 2000
|
||||||
rmq1:
|
rmq1:
|
||||||
<< : *rabbitmq
|
<< : *rabbitmq
|
||||||
hostname: rmq1
|
hostname: rmq1
|
||||||
|
|
Loading…
Reference in New Issue