Add blueprints for Ampache, AnythingLLM, Apprise API, and ArangoDB with Docker Compose and metadata

- Added entries in meta.json for Ampache, AnythingLLM, Apprise API, and ArangoDB with detailed descriptions, logos, and relevant links.
- Introduced Docker Compose configurations for each service to facilitate deployment.
- Created template.toml files for each service with default variables for configuration.
This commit is contained in:
Mauricio Siu
2025-03-30 14:08:45 -06:00
parent a679656987
commit df67a6f872
13 changed files with 170 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
version: "3.8"
services:
apprise-api:
image: linuxserver/apprise-api:latest
restart: unless-stopped
ports:
- 8000
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- config:/config
volumes:
config: {}