diff --git a/blueprints/carbone/docker-compose.yml b/blueprints/carbone/docker-compose.yml new file mode 100644 index 0000000..e908c10 --- /dev/null +++ b/blueprints/carbone/docker-compose.yml @@ -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: \ No newline at end of file diff --git a/blueprints/carbone/logo.png b/blueprints/carbone/logo.png new file mode 100644 index 0000000..7b350bc Binary files /dev/null and b/blueprints/carbone/logo.png differ diff --git a/blueprints/carbone/template.toml b/blueprints/carbone/template.toml new file mode 100644 index 0000000..7725b5b --- /dev/null +++ b/blueprints/carbone/template.toml @@ -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}" \ No newline at end of file