Does anyone have any guidelines for implementing the Appraise API App within TrueNAS 25.04? This is being used for notifications within Audiobookshelf.
Following up…
ok i’ve just tried and converted the docker run command from github to a compose file and did a test deploy via portainer, but the truenas gui should also work…
version: '3.9'
services:
apprise:
image: 'caronc/apprise:latest'
container_name: apprise
environment:
- APPRISE_WORKER_COUNT=1
- APPRISE_STATEFUL_MODE=simple
- PGID=568
- PUID=568
volumes:
- '/path/to/local/attach:/attach' #replace /path/to/local/attach with path to dataset on truenas
- '/path/to/local/plugin:/plugin'
- '/path/to/local/config:/config'
ports:
- '8000:8000'
And it did deploy and i was able to reach the webui. Since i’ve never heard of appraise before i have no idea what else needs to be configured, but it’s a start.
Request submitted as Community App Request: Apprise API App · Issue #2286 · truenas/apps · GitHub .
Have you at least tried with my compose file? As mentioned for me it started without problems.
On my list of things to do.