Files
NetAlertX/install/production-filesystem/entrypoint.d/95-appliance-integrity.sh
2025-10-31 22:24:31 +00:00

16 lines
981 B
Bash
Executable File

#!/bin/bash
# read-only-mode.sh detects and warns if running read-write on the root filesystem.
# Check if the root filesystem is mounted as read-only
if ! awk '$2 == "/" && $4 ~ /ro/ {found=1} END {exit !found}' /proc/mounts; then
cat <<EOF
══════════════════════════════════════════════════════════════════════════════
⚠️ Warning: Container is running as read-write, not in read-only mode.
Please mount the root filesystem as --read-only or use read-only: true
https://github.com/jokob-sk/NetAlertX/blob/main/docs/docker-troubleshooting/read-only-filesystem.md
══════════════════════════════════════════════════════════════════════════════
EOF
fi