![]() |
5 лет назад | |
---|---|---|
.. | ||
Dockerfile | 5 лет назад | |
README.md | 5 лет назад | |
build-test.sh | 5 лет назад | |
build.sh | 5 лет назад | |
check_login.sh | 5 лет назад | |
publish.sh | 5 лет назад | |
run.sh | 5 лет назад |
:warning: As of Sep 9th, 2018 we ship new docker builds, running netdata in docker with an ENTRYPOINT directive, not a COMMAND directive. Please adapt your execution scripts accordingly. You can find more information about ENTRYPOINT vs COMMAND is presented by goinbigdata here and by docker docs here.
Also, the
latest
is now based on alpine, soalpine
is not updated any more andarmv7hf
is now replaced witharmhf
(to comply with https://github.com/multiarch naming), soarmv7hf
is not updated either.
Running netdata in a container for monitoring the whole host, can limit its capabilities. Some data is not accessible or not as detailed as when running netdata on the host.
By default on x86_64 architecture our docker images use Polymorphic Polyverse Linux package scrambling. For increased security you can enable rescrambling of packages during runtime. To do this set environment variable RESCRAMBLE=true
while starting netdata docker container.
For more information go to Polyverse site
Quickly start netdata with the docker command line. Netdata is then available at http://host:19999
This is good for an internal network or to quickly analyse a host.
docker run -d --name=netdata \
-p 19999:19999 \
-v /etc/passwd:/host/etc/passwd:ro \
-v /etc/group:/host/etc/group:ro \
-v /proc:/host/proc:ro \
-v /sys:/host/sys:ro \
--cap-add SYS_PTRACE \
--security-opt apparmor=unconfined \
netdata/netdata
The above can be converted to docker-compose file for ease of management:
version: '3'
services:
netdata:
image: netdata/netdata
hostname: example.com # set to fqdn of host
ports:
- 19999:19999
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
If you don't want to use the apps.plugin functionality, you can remove the mounts of /etc/passwd
and /etc/group
(they are used to get proper user and group names for the monitored host) to get slightly better security.
There are a few options for resolving container names within netdata. Some methods of doing so will allow root access to your machine from within the container. Please read the following carefully.
Deploy a Docker socket proxy that accepts and filter out requests using something like HAProxy so that it restricts connections to read-only access to the CONTAINERS endpoint.
The reason it's safer to expose the socket to the proxy is because netdata has a TCP port exposed outside the Docker network. Access to the proxy container is limited to only within the network.
Important Note: You should seriously consider the necessity of activating this option, as it grants to the netdata user access to the privileged socket connection of docker service and therefore your whole machine.
If you want to have your container names resolved by Netdata, make the netdata
user be part of the group that owns the socket.
To achieve that just add environment variable PGID=[GROUP NUMBER]
to the Netdata container,
where [GROUP NUMBER]
is practically the group id of the group assigned to the docker socket, on your host.
This group number can be found by running the following (if socket group ownership is docker):
grep docker /etc/group | cut -d ':' -f 3
Important Note: You should seriously consider the necessity of activating this option, as it grants to the netdata user access to the privileged socket connection of docker service and therefore your whole machine.
version: '3'
services:
netdata:
image: netdata/netdata
# ... rest of your config ...
volumes:
# ... other volumes ...
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- DOCKER_USR=root
Since we use an ENTRYPOINT directive, you can provide netdata daemon command line options such as the IP address netdata will be running on, using the command instruction.
For a permanent installation on a public server, you should secure the netdata instance. This section contains an example of how to install netdata with an SSL reverse proxy and basic authentication.
You can use use the following docker-compose.yml and Caddyfile files to run netdata with docker. Replace the Domains and email address for Letsencrypt before starting.
This file needs to be placed in /opt with name Caddyfile
. Here you customize your domain and you need to provide your email address to obtain a Letsencrypt certificate. Certificate renewal will happen automatically and will be executed internally by the caddy server.
netdata.example.org {
proxy / netdata:19999
tls admin@example.org
}
After setting Caddyfile run this with docker-compose up -d
to have fully functioning netdata setup behind HTTP reverse proxy.
version: '3'
volumes:
caddy:
services:
caddy:
image: abiosoft/caddy
ports:
- 80:80
- 443:443
volumes:
- /opt/Caddyfile:/etc/Caddyfile
- caddy:/root/.caddy
environment:
ACME_AGREE: 'true'
netdata:
restart: always
hostname: netdata.example.org
image: netdata/netdata
cap_add:
- SYS_PTRACE
security_opt:
- apparmor:unconfined
volumes:
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
You can restrict access by following official caddy guide and adding lines to Caddyfile.
At netdata we provide multiple ways of testing your docker images using your own repositories. You may either use the command line tools available or take advantage of our Travis CI infrastructure.
The script packaging/docker/build-test.sh
can be used to create an image and upload it to a repository of your choosing.
Usage: packaging/docker/build-test.sh -r <REPOSITORY> -v <VERSION> -u <DOCKER_USERNAME> -p <DOCKER_PWD> [-s]
-s skip build, just push the image
Builds an amd64 image and pushes it to the docker hub repository REPOSITORY
This is especially useful when testing a Pull Request for Kubernetes, since you can set image
to an immutable repository and tag, set the imagePullPolicy
to Always
and just keep uploading new images.
Example:
We get a local copy of the Helm chart at https://github.com/netdata/helmchart. We modify values.yaml
to have the following:
image:
repository: cakrit/netdata-prs
tag: PR5576
pullPolicy: Always
We check out PR5576 and run the following:
./packaging/docker/build-test.sh -r cakrit/netdata-prs -v PR5576 -u cakrit -p 'XXX'
Then we can run helm install [path to our helmchart clone]
.
If we make changes to the code, we execute the same build-test.sh
command, followed by helm upgrade [name] [path to our helmchart clone]
To enable Travis CI integration on your own repositories (Docker and Github), you need to be part of the Netdata organization. Once you have contacted the netdata owners to setup you up on Github and Travis, execute the following steps
Preparation
Setting up Travis CI for your own fork (Detailed instructions provided by Travis team here)
While in Travis settings, under netdata repository settings in the Environment Variables section, you need to add the following:
Having followed these instructions, your forked repository should be all set up for Travis Integration, happy testing!