mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
16 lines
261 B
YAML
16 lines
261 B
YAML
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: {} |