mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
17 lines
487 B
Bash
17 lines
487 B
Bash
|
#!/bin/sh
|
||
|
# Credit for the bulk of this entrypoint script goes to cornfeedhobo
|
||
|
# Source is https://github.com/cornfeedhobo/docker-monero/blob/master/entrypoint.sh
|
||
|
set -e
|
||
|
|
||
|
# Set require --non-interactive flag
|
||
|
set -- "monerod" "--non-interactive" "$@"
|
||
|
|
||
|
# Configure NUMA if present for improved performance
|
||
|
if command -v numactl >/dev/null 2>&1; then
|
||
|
numa="numactl --interleave=all"
|
||
|
set -- "$numa" "$@"
|
||
|
fi
|
||
|
# Start the daemon using fixuid
|
||
|
# to adjust permissions if needed
|
||
|
exec "$@"
|