/
dobrowins
/
hellomother
Обзор
Документация
Войти
/
dobrowins
/
hellomother
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
bin/docker-entrypoint
13 строк
381 B
Artjom Dobrovinskiy
Initial commit
18 янв 2026, 13:11
18 янв 2026, 13:11
16663c0
Код
Авторство
О чём код?
#!/bin/bash -e # Enable jemalloc for reduced memory usage and latency. if [ -z "${LD_PRELOAD+x}" ] && [ -f /usr/lib/*/libjemalloc.so.2 ]; then export LD_PRELOAD="$(echo /usr/lib/*/libjemalloc.so.2)" fi # If running the rails server then create or migrate existing database if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then ./bin/rails db:prepare fi exec "${@}"