Added Whisper to he stack and updated path naming

This commit is contained in:
2025-09-26 01:44:00 +00:00
parent af8fb1a502
commit 265d50897b
2 changed files with 29 additions and 9 deletions

View File

@@ -74,6 +74,7 @@ docker compose up -d
- **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 ### 💻 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: 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:
@@ -97,7 +98,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

@@ -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:
@@ -633,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}
@@ -731,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}
@@ -804,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