mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
- Created a new TOML template for the cup service. - Defined main domain variable and service configuration. - Specified service name, port, and host for the cup service. - Configured environment variables and mounted Docker socket.
18 lines
255 B
TOML
18 lines
255 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "cup"
|
|
port = 8000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
|
|
[[config.mounts]]
|
|
serviceName = "cup"
|
|
source = "/var/run/docker.sock"
|
|
target = "/var/run/docker.sock"
|
|
type = "bind"
|