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:
17
blueprints/ampache/docker-compose.yml
Normal file
17
blueprints/ampache/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
ampache:
|
||||
image: ampache/ampache:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 80
|
||||
volumes:
|
||||
- config:/var/www/config
|
||||
- log:/var/log/ampache
|
||||
- mysql:/var/lib/mysql
|
||||
- ${MEDIA_PATH}:/media
|
||||
|
||||
volumes:
|
||||
config: {}
|
||||
log: {}
|
||||
mysql: {}
|
||||
BIN
blueprints/ampache/logo.png
Normal file
BIN
blueprints/ampache/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.9 KiB |
12
blueprints/ampache/template.toml
Normal file
12
blueprints/ampache/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
media_path = "/path/to/your/media"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "ampache"
|
||||
port = 80
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
MEDIA_PATH = "${media_path}"
|
||||
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}"
|
||||
16
blueprints/apprise-api/docker-compose.yml
Normal file
16
blueprints/apprise-api/docker-compose.yml
Normal 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: {}
|
||||
BIN
blueprints/apprise-api/logo.png
Normal file
BIN
blueprints/apprise-api/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 185 KiB |
8
blueprints/apprise-api/template.toml
Normal file
8
blueprints/apprise-api/template.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "apprise-api"
|
||||
port = 8000
|
||||
host = "${main_domain}"
|
||||
14
blueprints/arangodb/docker-compose.yml
Normal file
14
blueprints/arangodb/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
arangodb:
|
||||
image: arangodb:3.12.4
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8529
|
||||
environment:
|
||||
- ARANGO_ROOT_PASSWORD=${ARANGO_PASSWORD}
|
||||
volumes:
|
||||
- data:/var/lib/arangodb3
|
||||
|
||||
volumes:
|
||||
data: {}
|
||||
BIN
blueprints/arangodb/logo.png
Normal file
BIN
blueprints/arangodb/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
12
blueprints/arangodb/template.toml
Normal file
12
blueprints/arangodb/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
arango_password = "${password:16}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "arangodb"
|
||||
port = 8529
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
ARANGO_PASSWORD = "${arango_password}"
|
||||
Reference in New Issue
Block a user