You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
sysctl -w kernel.core_pattern="/tmp/coredumps/core.%e.%p" # Путь можно поменять
Текущие наработки:
New dockerfile
FROM <base_cartridge_img_based_in_centos>
USER root
COPY ./coredump_entrypoint.sh /tmp/coredump_entrypoint.sh
RUN yum install -y gdb
RUN chmod +x /tmp/coredump_entrypoint.sh
ENTRYPOINT ["/bin/sh","/tmp/coredump_entrypoint.sh"]
CMD <CMD_FROM_base_cartridge_img_based_in_centos>