/
BingoX
/
Alternative
Обзор
Документация
Войти
/
BingoX
/
Alternative
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
bin/docker-entrypoint
14 строк
387 B
Nikorexio
Первый коммит
15 май 2025, 18:36
15 май 2025, 18:36
190a17b
Код
Авторство
О чём код?
#!/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 # If running the rails server then create or migrate existing database if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then ./bin/rails db:prepare fi exec "${@}"