3 Commits

2 changed files with 69 additions and 16 deletions

View File

@@ -29,7 +29,9 @@ docker compose up -d
- **Lidarr** (8686) - Music management - **Lidarr** (8686) - Music management
- **Lidarr Importer API** (5110) - API of Maloja DB for Lidarr Import - **Lidarr Importer API** (5110) - API of Maloja DB for Lidarr Import
- **Maloja** (42010) - Music Statistics - **Maloja** (42010) - Music Statistics
- **MBID-Poller** - Polls Lidar API with Scrobbled artists then auto adds once found.
- **Multi-Scrobbler** (9078) - Music Scrobbling - **Multi-Scrobbler** (9078) - Music Scrobbling
- **Maloja to Lidarr Importer** - Scrobble Artist List for Custom Import
- **Pinchflat** (8945) - Youtube Content Downloader - **Pinchflat** (8945) - Youtube Content Downloader
- **Soulseek** (5030) - P2P Filesharer - **Soulseek** (5030) - P2P Filesharer
- **Soularr** - Intermediary between Lidarr and Soulseek - **Soularr** - Intermediary between Lidarr and Soulseek
@@ -59,6 +61,7 @@ docker compose up -d
- **Syncthing** (8384) - File synchronization - **Syncthing** (8384) - File synchronization
### 🛠️ System Utilities ### 🛠️ System Utilities
- **Bytestash** (5661) - Private Pastebin
- **Docker Proxy** (2375) - Docker API proxy - **Docker Proxy** (2375) - Docker API proxy
- **FileBrowser** (6633) - Web file manager - **FileBrowser** (6633) - Web file manager
- **FoundryVTT Watcher** (30000) - FoundryVTT player login watcher - **FoundryVTT Watcher** (30000) - FoundryVTT player login watcher
@@ -67,11 +70,25 @@ docker compose up -d
- **iPerf3 Server** (5201) - LAN Network Speedtest server - **iPerf3 Server** (5201) - LAN Network Speedtest server
- **RustDesk (hbbr)** - Remote desktop relay - **RustDesk (hbbr)** - Remote desktop relay
- **RustDesk (hbbs)** - Remote desktop signaling - **RustDesk (hbbs)** - Remote desktop signaling
- **Newt** - Tunneloing service to offaite reverse proxy - **Newt** - Notification service
- **RackNerd API Converter** (5000) - VPS monitoring API - **RackNerd API Converter** (5000) - VPS monitoring API
- **Speedtest Database** - MariaDB for speedtest - **Speedtest Database** - MariaDB for speedtest
- **Speedtest Tracker** (8180) - Network monitoring - **Speedtest Tracker** (8180) - Network monitoring
- **Watchtower** - Container updates - **Watchtower** - Container updates
- **Whisper** - Speech Recognition System
### 💻 Proxmox Host
The core of this environment is a Proxmox host that orchestrates multiple services using both VMs and LXCs for resource isolation and management. The services currently running include:
- **AdGuard** - Network-wide ad and tracker blocking service.
- **Vaultwarden** - Self-hosted Bitwarden server for secure password management.
- **Immich** - Self-hosted, open-source photo and video backup solution.
- **n8n** - Workflow automation tool for connecting apps and services.
- **HAOS (Home Assistant)** - VM dedicated to home automation.
- **Wordpress** - Content management system for website hosting.
- **FoundryVTT** - Self-hosted virtual tabletop for role-playing games.
- **Crafty Controller** - Server manager for Minecraft.
- **Nextcloud OS** - Platform for private file hosting and collaboration.
## 🏗️ Architecture ## 🏗️ Architecture
@@ -82,7 +99,7 @@ The stack is organized into logical service groups:
├── docker-compose.yml # Main orchestration for ephemeral services ├── docker-compose.yml # Main orchestration for ephemeral services
├── .env # Environment variables ├── .env # Environment variables
├── .env.template # Template for new deployments ├── .env.template # Template for new deployments
├── Services/ ├── services/
│ ├── filebrowser/ │ ├── filebrowser/
│ ├── homepage/ │ ├── homepage/
│ └── ... # Other stateless services │ └── ... # Other stateless services

View File

@@ -64,7 +64,7 @@ services:
restart: unless-stopped restart: unless-stopped
lidarr: lidarr:
image: lscr.io/linuxserver/lidarr:latest image: ghcr.io/linuxserver-labs/prarr:lidarr-plugins
container_name: lidarr container_name: lidarr
environment: environment:
- PUID=1000 - PUID=1000
@@ -72,8 +72,8 @@ services:
- TZ=${TZ} - TZ=${TZ}
volumes: volumes:
- /docker-local/Arrs/Lidarr/config:/config - /docker-local/Arrs/Lidarr/config:/config
- /data/:/data/ - /data/torrents/complete/lidarr:/data/downloads/complete/lidarr
- /data/torrents/:/downloads - /data/music:/data/music
ports: ports:
- 8686:8686 - 8686:8686
networks: networks:
@@ -107,7 +107,7 @@ services:
- WEBUI_PORT=8080 - WEBUI_PORT=8080
volumes: volumes:
- ./services/qBittorrent/config:/config - ./services/qBittorrent/config:/config
- /data/torrents:/downloads - /data/torrents:/data/downloads
ports: ports:
- 7070:8080 - 7070:8080
- 56881:6881 - 56881:6881
@@ -127,7 +127,7 @@ services:
volumes: volumes:
- /docker-local/Arrs/Radarr/config:/config - /docker-local/Arrs/Radarr/config:/config
- /data/:/data/ - /data/:/data/
- /data/torrents/:/downloads - /data/torrents/complete/radarr:/data/downloads/complete/radarr
ports: ports:
- 7878:7878 - 7878:7878
networks: networks:
@@ -145,7 +145,7 @@ services:
volumes: volumes:
- /docker-local/Arrs/Sonarr/config:/config - /docker-local/Arrs/Sonarr/config:/config
- /data:/data - /data:/data
- /data/torrents:/downloads - /data/torrents/complete/sonarr:/data/downloads/complete/sonarr
ports: ports:
- 8989:8989 - 8989:8989
networks: networks:
@@ -214,7 +214,7 @@ services:
image: gitea.kansaigaijin.com/kansaigaijin/majola-lidarr-importer:latest image: gitea.kansaigaijin.com/kansaigaijin/majola-lidarr-importer:latest
container_name: maloja-lidarr-importer-api container_name: maloja-lidarr-importer-api
volumes: volumes:
- ./logs:/app/logs - ./services/maloja_lidarr_api/logs:/app/logs
ports: ports:
- "5110:5000" - "5110:5000"
environment: environment:
@@ -264,7 +264,7 @@ services:
- SCRIPT_INTERVAL=300 - SCRIPT_INTERVAL=300
volumes: volumes:
- /data/torrents/slskd_downloads:/downloads - /data/torrents/slskd_downloads:/downloads
- ./Services/soularr:/data - ./services/soularr:/data
restart: unless-stopped restart: unless-stopped
# Document Management # Document Management
@@ -387,10 +387,10 @@ services:
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
PAPERLESS_TIKA_ENDPOINT: http://tika:9998 PAPERLESS_TIKA_ENDPOINT: http://tika:9998
volumes: volumes:
- ./Services/paperless/data:/usr/src/paperless/data - ./services/paperless/data:/usr/src/paperless/data
- ./Services/paperless/media:/usr/src/paperless/media - ./services/paperless/media:/usr/src/paperless/media
- ./Services/paperless/export:/usr/src/paperless/export - ./services/paperless/export:/usr/src/paperless/export
- ./Services/paperless/consume:/usr/src/paperless/consume - ./services/paperless/consume:/usr/src/paperless/consume
ports: ports:
- "8100:8000" - "8100:8000"
depends_on: depends_on:
@@ -584,6 +584,23 @@ services:
restart: unless-stopped restart: unless-stopped
# System Utilities # System Utilities
bytestash:
image: "ghcr.io/jordan-dalby/bytestash:latest"
container_name: bytestash
restart: always
volumes:
- /docker-local/bytestash/snippets:/data/snippets
ports:
- "5661:5000"
environment:
BASE_PATH: ""
JWT_SECRET: ${BYTE_JWT_SECRET}
TOKEN_EXPIRY: 24h
ALLOW_NEW_ACCOUNTS: "false"
DEBUG: "true"
DISABLE_ACCOUNTS: "false"
DISABLE_INTERNAL_ACCOUNTS: "false"
dockerproxy: dockerproxy:
image: ghcr.io/tecnativa/docker-socket-proxy:latest image: ghcr.io/tecnativa/docker-socket-proxy:latest
container_name: dockerproxy container_name: dockerproxy
@@ -616,7 +633,7 @@ services:
restart: unless-stopped restart: unless-stopped
foundry: foundry:
build: ./Services/foundry-login build: ./services/foundry-login
container_name: foundry-login container_name: foundry-login
environment: environment:
- SSH_HOST=${FOUNDRY_SSH_HOST} - SSH_HOST=${FOUNDRY_SSH_HOST}
@@ -714,7 +731,7 @@ services:
restart: unless-stopped restart: unless-stopped
racknerd-api-converter: racknerd-api-converter:
build: ./Services/racknerd-converter build: ./services/racknerd-converter
container_name: RacknerdConverter container_name: RacknerdConverter
environment: environment:
- RACKNERD_API_KEY=${RACKNERD_API_KEY} - RACKNERD_API_KEY=${RACKNERD_API_KEY}
@@ -787,6 +804,25 @@ services:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
whisper:
image: linuxserver/faster-whisper:latest
container_name: faster-whisper
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
- WHISPER_MODEL=tiny-int8
- WHISPER_BEAM=1 #optional
- WHISPER_LANG=en #optional
volumes:
- ./services/whisper:/config
ports:
- 10300:10300
restart: unless-stopped
networks:
arr_network:
ipv4_address: 172.20.0.15
networks: networks:
arr_network: arr_network:
driver: bridge driver: bridge