mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 08:15:34 +01:00
Add Netdata and update docs
This commit is contained in:
parent
f241a9810f
commit
3f4610cf3e
Binary file not shown.
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 117 KiB |
@ -12,6 +12,7 @@ All services are deployed using Docker compose and are run as a non-root user.
|
|||||||
* [watchtower](https://github.com/containrrr/watchtower) - notifications about docker image updates
|
* [watchtower](https://github.com/containrrr/watchtower) - notifications about docker image updates
|
||||||
* [Duplicati](https://github.com/linuxserver/docker-duplicati) - cool backup
|
* [Duplicati](https://github.com/linuxserver/docker-duplicati) - cool backup
|
||||||
software
|
software
|
||||||
|
* [Netdata](https://github.com/netdata/netdata) - real time monitoring solution
|
||||||
|
|
||||||
### Media
|
### Media
|
||||||
* [Jellyfin](https://github.com/linuxserver/docker-jellyfin) - media server
|
* [Jellyfin](https://github.com/linuxserver/docker-jellyfin) - media server
|
||||||
@ -20,12 +21,14 @@ All services are deployed using Docker compose and are run as a non-root user.
|
|||||||
* [Bazarr](https://github.com/linuxserver/docker-bazarr) - subtitle manager
|
* [Bazarr](https://github.com/linuxserver/docker-bazarr) - subtitle manager
|
||||||
* [delugevpn](https://github.com/binhex/arch-delugevpn) - torrent client with VPN and Privoxy
|
* [delugevpn](https://github.com/binhex/arch-delugevpn) - torrent client with VPN and Privoxy
|
||||||
* [YoutubeDL](https://github.com/Tzahi12345/YoutubeDL-Material) - Youtube media downloader
|
* [YoutubeDL](https://github.com/Tzahi12345/YoutubeDL-Material) - Youtube media downloader
|
||||||
|
* [Prowlarr](https://github.com/Prowlarr/Prowlarr) - indexer
|
||||||
|
|
||||||
### Personal cloud
|
### Personal cloud
|
||||||
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
||||||
* [Redis](https://github.com/docker-library/redis) - cache service
|
* [Redis](https://github.com/docker-library/redis) - cache service
|
||||||
* [MariaDB](https://github.com/linuxserver/docker-mariadb) - database
|
* [MariaDB](https://github.com/linuxserver/docker-mariadb) - database
|
||||||
* [Collabora](https://github.com/CollaboraOnline/online) - office suite
|
* [Collabora](https://github.com/CollaboraOnline/online) - office suite
|
||||||
|
* [static-file-server](https://github.com/halverneus/static-file-server) - static file server
|
||||||
|
|
||||||
### Software development
|
### Software development
|
||||||
* [Gitea](https://github.com/go-gitea/gitea) - git web service
|
* [Gitea](https://github.com/go-gitea/gitea) - git web service
|
||||||
|
@ -40,6 +40,7 @@ BACKUP_DIR=
|
|||||||
|
|
||||||
# netdata
|
# netdata
|
||||||
HOSTNAME=
|
HOSTNAME=
|
||||||
|
NETDATA_PGID=
|
||||||
|
|
||||||
# gitea
|
# gitea
|
||||||
# you need to create "git" user and group
|
# you need to create "git" user and group
|
||||||
|
29
docker/stacks/netdata/netdata.yml
Normal file
29
docker/stacks/netdata/netdata.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
services:
|
||||||
|
netdata:
|
||||||
|
image: netdata/netdata
|
||||||
|
container_name: netdata
|
||||||
|
hostname: ${HOSTNAME}
|
||||||
|
networks:
|
||||||
|
- netdata
|
||||||
|
cap_add:
|
||||||
|
- SYS_PTRACE
|
||||||
|
security_opt:
|
||||||
|
- apparmor:unconfined
|
||||||
|
environment:
|
||||||
|
- PGID=${NETDATA_PGID}
|
||||||
|
- TZ=${TIMEZONE}
|
||||||
|
- DISABLE_TELEMETRY=1
|
||||||
|
volumes:
|
||||||
|
- /etc/passwd:/host/etc/passwd:ro
|
||||||
|
- /etc/group:/host/etc/group:ro
|
||||||
|
- /proc:/host/proc:ro
|
||||||
|
- /sys:/host/sys:ro
|
||||||
|
- /etc/os-release:/host/etc/os-release:ro
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
ports:
|
||||||
|
- 19999:19999
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
netdata:
|
||||||
|
name: netdata
|
Loading…
Reference in New Issue
Block a user