mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 16:25:35 +01:00
Compare commits
2 Commits
3f4610cf3e
...
6448921ea3
Author | SHA1 | Date | |
---|---|---|---|
|
6448921ea3 | ||
|
77f3365447 |
Binary file not shown.
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 123 KiB |
@ -12,7 +12,8 @@ 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
|
* [Uptime Kuma](https://github.com/louislam/uptime-kuma) - fancy uptime monitoring tool
|
||||||
|
* [Scrutiny](https://github.com/AnalogJ/scrutiny) - S.M.A.R.T monitoring
|
||||||
|
|
||||||
### Media
|
### Media
|
||||||
* [Jellyfin](https://github.com/linuxserver/docker-jellyfin) - media server
|
* [Jellyfin](https://github.com/linuxserver/docker-jellyfin) - media server
|
||||||
@ -22,6 +23,8 @@ All services are deployed using Docker compose and are run as a non-root user.
|
|||||||
* [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
|
* [Prowlarr](https://github.com/Prowlarr/Prowlarr) - indexer
|
||||||
|
* [Lidarr](https://github.com/Lidarr/Lidarr) - music library manager
|
||||||
|
* [miniDLNA](https://github.com/vladgh/docker_base_images/tree/main/minidlna) - DLNA server
|
||||||
|
|
||||||
### Personal cloud
|
### Personal cloud
|
||||||
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
* [Nextcloud](https://github.com/linuxserver/docker-nextcloud) - filesync/cloud solution
|
||||||
|
@ -32,6 +32,11 @@ BW_ADMIN_TOKEN=
|
|||||||
# jellyfin
|
# jellyfin
|
||||||
JF_RENDER_GROUP=
|
JF_RENDER_GROUP=
|
||||||
|
|
||||||
|
# minidlna
|
||||||
|
MINIDLNA_PORT=
|
||||||
|
MINIDLNA_MEDIA_DIR=
|
||||||
|
MINIDLNA_FRIENDLY_NAME=
|
||||||
|
|
||||||
# duplicati
|
# duplicati
|
||||||
DUPLICATI_UID=
|
DUPLICATI_UID=
|
||||||
DUPLICATI_GID=
|
DUPLICATI_GID=
|
||||||
|
@ -23,6 +23,18 @@ services:
|
|||||||
- /dev/dri/card0:/dev/dri/card0
|
- /dev/dri/card0:/dev/dri/card0
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
minidlna:
|
||||||
|
image: vladgh/minidlna
|
||||||
|
container_name: minidlna
|
||||||
|
# You need to run the container in host mode for it to be able to receive UPnP broadcast packets.
|
||||||
|
network_mode: host
|
||||||
|
environment:
|
||||||
|
- MINIDLNA_PORT=${MINIDLNA_PORT}
|
||||||
|
- MINIDLNA_MEDIA_DIR=${MINIDLNA_MEDIA_DIR}
|
||||||
|
- MINIDLNA_FRIENDLY_NAME=${MINIDLNA_FRIENDLY_NAME}
|
||||||
|
volumes:
|
||||||
|
- ${DATA_DIR}/media/music:/media
|
||||||
|
|
||||||
radarr:
|
radarr:
|
||||||
image: lscr.io/linuxserver/radarr:4.3.2
|
image: lscr.io/linuxserver/radarr:4.3.2
|
||||||
container_name: radarr
|
container_name: radarr
|
||||||
@ -89,6 +101,23 @@ services:
|
|||||||
- 6767:6767
|
- 6767:6767
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
|
lidarr:
|
||||||
|
image: lscr.io/linuxserver/lidarr
|
||||||
|
container_name: lidarr
|
||||||
|
networks:
|
||||||
|
- media
|
||||||
|
environment:
|
||||||
|
- PUID=${PUID}
|
||||||
|
- PGID=${PGID}
|
||||||
|
- TZ=${TIMEZONE}
|
||||||
|
volumes:
|
||||||
|
- ${APPS_DIR}/lidarr:/config
|
||||||
|
- ${DATA_DIR}/media/music:/music
|
||||||
|
- ${DATA_DIR}/downloads:/downloads
|
||||||
|
ports:
|
||||||
|
- 8686:8686
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
delugevpn:
|
delugevpn:
|
||||||
image: binhex/arch-delugevpn
|
image: binhex/arch-delugevpn
|
||||||
container_name: delugevpn
|
container_name: delugevpn
|
||||||
|
42
docker/stacks/monitoring/monitoring.yml
Normal file
42
docker/stacks/monitoring/monitoring.yml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
services:
|
||||||
|
uptime-kuma:
|
||||||
|
container_name: uptime-kuma
|
||||||
|
image: louislam/uptime-kuma
|
||||||
|
ports:
|
||||||
|
- 3111:3001
|
||||||
|
volumes:
|
||||||
|
- ${APPS_DIR}/uptime-kuma:/app/data
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
- monitoring
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
scrutiny:
|
||||||
|
container_name: scrutiny
|
||||||
|
image: ghcr.io/analogj/scrutiny:master-omnibus
|
||||||
|
cap_add:
|
||||||
|
- SYS_RAWIO
|
||||||
|
- SYS_ADMIN
|
||||||
|
ports:
|
||||||
|
- "8283:8080" # webapp
|
||||||
|
- "8286:8086" # influxDB admin
|
||||||
|
volumes:
|
||||||
|
- /run/udev:/run/udev:ro
|
||||||
|
- ${APPS_DIR}/scrutiny/config:/opt/scrutiny/config
|
||||||
|
- ${APPS_DIR}/scrutiny/influxdb:/opt/scrutiny/influxdb
|
||||||
|
networks:
|
||||||
|
- monitoring
|
||||||
|
devices:
|
||||||
|
- "/dev/sda"
|
||||||
|
- "/dev/sdb"
|
||||||
|
- "/dev/sdc"
|
||||||
|
- "/dev/nvme0"
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external:
|
||||||
|
name: proxy
|
||||||
|
monitoring:
|
||||||
|
name: monitoring
|
@ -1,29 +0,0 @@
|
|||||||
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