diff --git a/README.md b/README.md index 7d20929..cd5db96 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ A collection of delicious docker recipes. - [x] mosquitto - [x] motion-arm :+1: - [x] mysql-proxy +- [x] netdata - [x] nginad - [x] nginx - [x] ngrok :+1: diff --git a/dnsmasq/pxe/README.md b/dnsmasq/pxe/README.md index 2d3cadc..f147309 100644 --- a/dnsmasq/pxe/README.md +++ b/dnsmasq/pxe/README.md @@ -27,6 +27,8 @@ web: restsart: always ``` +> :warning: The local mirror doesn't work! + ## dnsmasq.conf ``` @@ -92,4 +94,5 @@ docker-compose up -d docker-compose logs -f ``` -> You should stop DHCP service on local network. +> You should stop DHCP service on local network before starting PXE. +> Also take a look at `preseed.cfg` for unattended installation. diff --git a/netdata/Dockerfile b/netdata/Dockerfile new file mode 100644 index 0000000..21204f8 --- /dev/null +++ b/netdata/Dockerfile @@ -0,0 +1,38 @@ +# +# Dockerfile for netdata +# + +FROM alpine +MAINTAINER kev + +ENV NETDATA_VERSION 1.2.0 + +RUN set -xe \ + && apk add --no-cache autoconf \ + automake \ + bash \ + build-base \ + curl \ + libmnl \ + libmnl-dev \ + libuuid \ + util-linux-dev \ + zlib-dev \ + && addgroup -g 1000 netdata \ + && adduser -D -H -u 1000 -G netdata netdata \ + && curl -sSL https://github.com/firehol/netdata/releases/download/v$NETDATA_VERSION/netdata-$NETDATA_VERSION.tar.gz | tar xz \ + && cd netdata-$NETDATA_VERSION \ + && ./netdata-installer.sh --dont-wait \ + && cd .. \ + && rm -rf netdata-$NETDATA_VERSION \ + && apk del autoconf \ + automake \ + build-base \ + curl \ + libmnl-dev \ + util-linux-dev \ + zlib-dev + +EXPOSE 19999 + +CMD ["netdata", "-nd"] diff --git a/netdata/README.md b/netdata/README.md new file mode 100644 index 0000000..bc8380b --- /dev/null +++ b/netdata/README.md @@ -0,0 +1,7 @@ +netdata +======= + +[netdata][1] is a highly optimized Linux daemon providing real-time performance +monitoring for Linux systems, Applications, SNMP devices, over the web! + +[1]: https://github.com/firehol/netdata diff --git a/netdata/docker-compose.yml b/netdata/docker-compose.yml new file mode 100644 index 0000000..b006d08 --- /dev/null +++ b/netdata/docker-compose.yml @@ -0,0 +1,5 @@ +netdata: + image: vimagick/netdata + net: host + pid: host + restart: always