mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Argilla blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Argilla service, including web, worker, Elasticsearch, PostgreSQL, and Redis components. - Added logo for Argilla. - Created template.toml for Argilla with default variables for configuration.
This commit is contained in:
19
blueprints/argilla/template.toml
Normal file
19
blueprints/argilla/template.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
login_username = "${username}"
|
||||
login_password = "${password:8}"
|
||||
db_password = "${password:16}"
|
||||
redis_password = "${password:16}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "argilla-web"
|
||||
port = 6900
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
LOGIN_USERNAME = "${login_username}"
|
||||
LOGIN_PASSWORD = "${login_password}"
|
||||
DB_PASSWORD = "${db_password}"
|
||||
REDIS_PASSWORD = "${redis_password}"
|
||||
BACKGROUND_NUM_WORKERS = "2"
|
||||
Reference in New Issue
Block a user