mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
16 lines
287 B
YAML
16 lines
287 B
YAML
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: |