docker-projects/netdata/compose.yml

38 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2024-08-02 10:53:16 +02:00
# https://www.netdata.cloud/
# https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes
# Netdata provides high-fidelity data, real-time visualizations, reliable alerts, anomaly detection for every metric and a monitoring experience that is affordable and works out of the box
2024-08-03 21:26:02 +02:00
# Windows Installation: https://www.netdata.cloud/windows-monitoring/
2024-08-02 10:53:16 +02:00
name: netdata
services:
netdata:
image: netdata/netdata
container_name: netdata
pid: host
network_mode: host
restart: unless-stopped
cap_add:
- SYS_PTRACE
- SYS_ADMIN
security_opt:
- apparmor:unconfined
volumes:
- netdataconfig:/etc/netdata
- netdatalib:/var/lib/netdata
- netdatacache:/var/cache/netdata
2024-08-03 21:26:02 +02:00
#- /:/host/root:ro,rslave
2024-08-02 10:53:16 +02:00
- /etc/passwd:/host/etc/passwd:ro
- /etc/group:/host/etc/group:ro
- /etc/localtime:/etc/localtime:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /etc/os-release:/host/etc/os-release:ro
- /var/log:/host/var/log:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
netdataconfig:
netdatalib:
netdatacache: