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:
David Ansari 2021-07-30 09:36:17 +02:00
parent 6f5c4118ea
commit 47d572908d
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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