feat(docker): try increasing a memlock limit in the container (#114)

feat(docker): try increasing a memlock limit in DF container.

This should solve the awkward command overrides in K8S scripts.
Fixes #57.
This commit is contained in:
Roman Gershman 2022-06-07 14:33:55 +03:00 committed by GitHub
parent 62b6ae48c0
commit 1c51a65d25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,11 @@
#!/bin/sh
# This is important in order to provide enough locked memory to dragonfly
# when running on kernels < 5.12.
# This line should reside before `set -e` so it could fail silently
# in case the container runs in non-privileged mode.
ulimit -l 65000 2> /dev/null
set -e
# first arg is `-some-option`