mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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:
16
blueprints/carbone/docker-compose.yml
Normal file
16
blueprints/carbone/docker-compose.yml
Normal 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
BIN
blueprints/carbone/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
12
blueprints/carbone/template.toml
Normal file
12
blueprints/carbone/template.toml
Normal 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}"
|
||||||
Reference in New Issue
Block a user