mirror of
https://github.com/netdata/netdata.git
synced 2025-04-06 06:25:32 +00:00
Support installing extra packages in Docker images at runtime. (#14456)
* Support installing extra packages in Docker images at runtime. This enables users to pull in additional packages more easily if they need to. It also allows us to drop optional runtime dependencies from our base images without making life significantly more difficult for users who actually need them. * Reorganize code and fix issues brought up in review. * Make new variable empty by default instead.
This commit is contained in:
parent
faf2c718f0
commit
61fea7837f
3 changed files with 29 additions and 0 deletions
packaging/docker
|
@ -117,6 +117,8 @@ RUN chown -R root:root \
|
|||
ENV NETDATA_LISTENER_PORT 19999
|
||||
EXPOSE $NETDATA_LISTENER_PORT
|
||||
|
||||
ENV NETDATA_EXTRA_APK_PACKAGES=""
|
||||
|
||||
ENTRYPOINT ["/usr/sbin/run.sh"]
|
||||
|
||||
HEALTHCHECK --interval=60s --timeout=10s --retries=3 CMD /usr/sbin/health.sh
|
||||
|
|
|
@ -157,6 +157,20 @@ Additionally, for each stable release, three tags are pushed, one with the full
|
|||
that would match that tag (for example, if `v1.30.1` were to be published, the `v1.30` tag would be updated to
|
||||
point to that instead of `v1.30.0`).
|
||||
|
||||
## Adding extra packages at runtime
|
||||
|
||||
By default, the official Netdata container images do not include a number of optional runtime dependencies. You
|
||||
can add these dependencies, or any other APK packages, at runtime by listing them in the environment variable
|
||||
`NETDATA_EXTRA_APK_PACKAGES`.
|
||||
|
||||
Commonly useful packages include:
|
||||
|
||||
- `apcupsd`: For monitoring APC UPS devices.
|
||||
- `libvirt-daemon`: For resolving cgroup names for libvirt domains.
|
||||
- `lm-sensors`: For monitoring hardware sensors.
|
||||
- `msmtp`: For email alert support.
|
||||
- `netcat-openbsd`: For IRC alert support.
|
||||
|
||||
## Health Checks
|
||||
|
||||
Our Docker image provides integrated support for health checks through the standard Docker interfaces.
|
||||
|
|
|
@ -67,4 +67,17 @@ if [ -n "${NETDATA_CLAIM_URL}" ] && [ -n "${NETDATA_CLAIM_TOKEN}" ] && [ ! -f /v
|
|||
-daemon-not-running
|
||||
fi
|
||||
|
||||
if [ -n "${NETDATA_EXTRA_APK_PACKAGES}" ]; then
|
||||
echo "Fetching APK repository metadata."
|
||||
if ! apk update; then
|
||||
echo "Failed to fetch APK repository metadata."
|
||||
else
|
||||
echo "Installing supplementary packages."
|
||||
# shellcheck disable=SC2086
|
||||
if ! apk add --no-cache ${NETDATA_EXTRA_APK_PACKAGES}; then
|
||||
echo "Failed to install supplementary packages."
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
exec /usr/sbin/netdata -u "${DOCKER_USR}" -D -s /host -p "${NETDATA_LISTENER_PORT}" "$@"
|
||||
|
|
Loading…
Add table
Reference in a new issue