[IMP]Netdata : adapt to new configuration
This commit is contained in:
parent
2b8f81be40
commit
5e3437cc6e
@ -3,4 +3,5 @@ MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
||||
|
||||
# Override default configuration
|
||||
COPY netdata.conf /
|
||||
CMD /usr/sbin/netdata -D -s /host -p ${NETDATA_PORT} -c /netdata.conf
|
||||
COPY run.sh /usr/sbin/run.sh
|
||||
RUN chmod +x /usr/sbin/run.sh
|
||||
|
18092
netdata/netdata.conf
18092
netdata/netdata.conf
File diff suppressed because it is too large
Load Diff
31
netdata/run.sh
Normal file
31
netdata/run.sh
Normal file
@ -0,0 +1,31 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Entry point script for netdata
|
||||
#
|
||||
# Copyright: 2018 and later Netdata Inc.
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
# Author : Pavlos Emm. Katsoulakis <paul@netdata.cloud>
|
||||
# Author : Austin S. Hemmelgarn <austin@netdata.cloud>
|
||||
set -e
|
||||
|
||||
if [ ! "${DO_NOT_TRACK:-0}" -eq 0 ] || [ -n "$DO_NOT_TRACK" ]; then
|
||||
touch /etc/netdata/.opt-out-from-anonymous-statistics
|
||||
fi
|
||||
|
||||
if [ -n "${PGID}" ]; then
|
||||
echo "Creating docker group ${PGID}"
|
||||
addgroup -g "${PGID}" "docker" || echo >&2 "Could not add group docker with ID ${PGID}, its already there probably"
|
||||
echo "Assign netdata user to docker group ${PGID}"
|
||||
usermod -a -G "${PGID}" "${DOCKER_USR}" || echo >&2 "Could not add netdata user to group docker with ID ${PGID}"
|
||||
fi
|
||||
|
||||
if [ -n "${NETDATA_CLAIM_URL}" ] && [ -n "${NETDATA_CLAIM_TOKEN}" ] && [ ! -f /var/lib/netdata/cloud.d/claimed_id ]; then
|
||||
/usr/sbin/netdata-claim.sh -token="${NETDATA_CLAIM_TOKEN}" \
|
||||
-url="${NETDATA_CLAIM_URL}" \
|
||||
${NETDATA_CLAIM_ROOMS:+-rooms="${NETDATA_CLAIM_ROOMS}"} \
|
||||
${NETDATA_CLAIM_PROXY:+-proxy="${NETDATA_CLAIM_PROXY}"} \
|
||||
-daemon-not-running
|
||||
fi
|
||||
|
||||
exec /usr/sbin/netdata -u "${DOCKER_USR}" -D -s /host -p "${NETDATA_LISTENER_PORT}" -c /netdata.conf -W set web "web files group" root -W set web "web files owner" root "$@"
|
Loading…
Reference in New Issue
Block a user