feat: add single-folder RomM import and arr helpers
This commit is contained in:
@@ -182,6 +182,7 @@ services:
|
||||
ROMM_SCAN_AFTER_IMPORT: ${ROMM_SCAN_AFTER_IMPORT:-true}
|
||||
IMPORT_POLL_SECONDS: ${IMPORT_POLL_SECONDS:-60}
|
||||
IMPORT_QUIET_IDLE: ${IMPORT_QUIET_IDLE:-true}
|
||||
IMPORT_PLATFORM_MAP_JSON: ${IMPORT_PLATFORM_MAP_JSON:-{}}
|
||||
volumes:
|
||||
- ./romm-automation-import-worker.py:/work/romm-automation-import-worker.py:ro
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/staging:/staging
|
||||
@@ -191,6 +192,69 @@ services:
|
||||
networks:
|
||||
- romm-automation
|
||||
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
container_name: romm-automation-prowlarr
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=${PUID:-568}
|
||||
- PGID=${PGID:-568}
|
||||
- TZ=${TZ:-America/Chicago}
|
||||
volumes:
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/prowlarr/:/config
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/staging:/media/
|
||||
ports:
|
||||
- "${PROWLARR_PORT:-9896}:9696"
|
||||
networks:
|
||||
- romm-automation
|
||||
|
||||
qbittorrent:
|
||||
container_name: romm-automation-qbittorrent
|
||||
image: ghcr.io/hotio/qbittorrent:release-5.1.2
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${QBITTORRENT_PORT:-8380}:8080"
|
||||
environment:
|
||||
- PUID=${PUID:-568}
|
||||
- PGID=${PGID:-568}
|
||||
- UMASK=002
|
||||
- TZ=${TZ:-America/Chicago}
|
||||
- WEBUI_PORTS=8080/tcp,8080/udp
|
||||
- VPN_ENABLED=true
|
||||
- VPN_CONF=wg0
|
||||
- VPN_PROVIDER=proton
|
||||
- VPN_LAN_NETWORK=192.168.0.0/16
|
||||
- VPN_AUTO_PORT_FORWARD=true
|
||||
- VPN_FIREWALL_TYPE=auto
|
||||
- VPN_HEALTHCHECK_ENABLED=false
|
||||
- VPN_NAMESERVERS=wg
|
||||
- PRIVOXY_ENABLED=false
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
sysctls:
|
||||
- net.ipv4.conf.all.src_valid_mark=1
|
||||
- net.ipv6.conf.all.disable_ipv6=1
|
||||
volumes:
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/qbittorrent/:/config
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/staging:/media
|
||||
networks:
|
||||
- romm-automation
|
||||
|
||||
homarr:
|
||||
container_name: romm-automation-homarr
|
||||
image: ghcr.io/homarr-labs/homarr:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${TRUENAS_DOCKER_ROOT:-/mnt/HomeStorage02/Docker}/RomAutomation/homarr:/appdata # Persistent config/data storage
|
||||
environment:
|
||||
- SECRET_ENCRYPTION_KEY=${HOMARR_SECRET_KEY} # Required: paste 64-char hex string here
|
||||
- TZ=${TZ:-America/Chicago} # Set your timezone
|
||||
ports:
|
||||
- "${HOMARR_PORT:-7775}:7575"
|
||||
networks:
|
||||
- romm-automation
|
||||
|
||||
|
||||
networks:
|
||||
romm-automation:
|
||||
name: romm-automation
|
||||
|
||||
Reference in New Issue
Block a user