Initial Commit
This commit is contained in:
commit
b93ee3e0f4
92 changed files with 2410 additions and 0 deletions
9
bin/docker-entrypoint
Executable file
9
bin/docker-entrypoint
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
# Enable jemalloc for reduced memory usage and latency.
|
||||
if [ -z "${LD_PRELOAD+x}" ]; then
|
||||
LD_PRELOAD=$(find /usr/lib -name libjemalloc.so.2 -print -quit)
|
||||
export LD_PRELOAD
|
||||
fi
|
||||
|
||||
exec "${@}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue