mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
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:
16
blueprints/anythingllm/docker-compose.yml
Normal file
16
blueprints/anythingllm/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
anythingllm:
|
||||
image: mintplexlabs/anythingllm:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3001
|
||||
environment:
|
||||
- STORAGE_DIR=/app/server/storage
|
||||
volumes:
|
||||
- storage:/app/server/storage
|
||||
cap_add:
|
||||
- SYS_ADMIN
|
||||
|
||||
volumes:
|
||||
storage: {}
|
||||
BIN
blueprints/anythingllm/logo.png
Normal file
BIN
blueprints/anythingllm/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 51 KiB |
8
blueprints/anythingllm/template.toml
Normal file
8
blueprints/anythingllm/template.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "anythingllm"
|
||||
port = 3001
|
||||
host = "${main_domain}"
|
||||
Reference in New Issue
Block a user