mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Ackee blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Ackee service and MongoDB. - Added logo for Ackee. - Created template.toml for Ackee configuration with default variables.
This commit is contained in:
parent
e57c7cac96
commit
722ce8ca2e
21
blueprints/ackee/docker-compose.yml
Normal file
21
blueprints/ackee/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
version: "3"
|
||||
|
||||
|
||||
services:
|
||||
ackee:
|
||||
image: electerious/ackee:3.4.2
|
||||
ports:
|
||||
- "3000"
|
||||
environment:
|
||||
- ACKEE_USERNAME=${ACKEE_USERNAME}
|
||||
- ACKEE_PASSWORD=${ACKEE_PASSWORD}
|
||||
- ACKEE_MONGODB=${ACKEE_MONGODB}
|
||||
|
||||
mongo:
|
||||
image: mongo:4
|
||||
environment:
|
||||
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
|
||||
|
||||
|
BIN
blueprints/ackee/logo.png
Normal file
BIN
blueprints/ackee/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
17
blueprints/ackee/template.toml
Normal file
17
blueprints/ackee/template.toml
Normal file
@ -0,0 +1,17 @@
|
||||
[variables]
|
||||
ACKEE_USERNAME = "default"
|
||||
ACKEE_PASSWORD = "${password:16}"
|
||||
MONGO_INITDB_ROOT_PASSWORD = "${password:16}"
|
||||
ACKEE_MONGODB = "mongodb://mongo:${MONGO_INITDB_ROOT_PASSWORD}@mongo:27017"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "ackee"
|
||||
port = 3000
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
ACKEE_USERNAME = "${ACKEE_USERNAME}"
|
||||
ACKEE_PASSWORD = "${ACKEE_PASSWORD}"
|
||||
ACKEE_MONGODB = "${ACKEE_MONGODB}"
|
||||
|
Loading…
Reference in New Issue
Block a user