Add Carbone blueprint with Docker Compose and configuration files

- Introduced Docker Compose setup for Carbone service, including environment variables and volume configuration.
- Added logo for Carbone.
- Created template.toml for Carbone with default variables for configuration.
This commit is contained in:
Mauricio Siu 2025-03-30 20:28:05 -06:00
parent f0663626eb
commit ec5b95a90c
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,16 @@
version: '3.8'
services:
carbone:
image: carbone/carbone-ee:full-4.25.5
restart: unless-stopped
environment:
- CARBONE_EE_LICENSE=${CARBONE_KEY}
- CARBONE_EE_STUDIO=true
ports:
- 4000
volumes:
- template:/app/template
volumes:
template:

BIN
blueprints/carbone/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,12 @@
[variables]
main_domain = "${domain}"
carbone_key = "${password:32}"
[config]
[[config.domains]]
serviceName = "carbone"
port = 4000
host = "${main_domain}"
[config.env]
CARBONE_KEY = "${carbone_key}"