refactor(docker-compose): Set default ulimits even when var is set (but set to just an empty string)
This commit is contained in:
@@ -6,10 +6,10 @@ services:
|
||||
networks:
|
||||
vault-default:
|
||||
ulimits:
|
||||
nproc: ${ULIMIT_NPROC-65535}
|
||||
nproc: ${ULIMIT_NPROC:-65535}
|
||||
nofile:
|
||||
soft: ${ULIMIT_NPROC-65535}
|
||||
hard: ${ULIMIT_NPROC-65535}
|
||||
soft: ${ULIMIT_NPROC:-65535}
|
||||
hard: ${ULIMIT_NPROC:-65535}
|
||||
extends:
|
||||
file: common-settings.yaml
|
||||
service: common-settings
|
||||
|
Reference in New Issue
Block a user