mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for anonupload service with environment variables and volume configuration. - Added logo for anonupload. - Created template.toml for anonupload with default variables for configuration.
16 lines
331 B
TOML
16 lines
331 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
admin_email = "${email}"
|
|
admin_password = "${password:16}"
|
|
contact_email = "${email}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "anonupload"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
ADMIN_EMAIL = "${admin_email}"
|
|
ADMIN_PASSWORD = "${admin_password}"
|
|
CONTACT_EMAIL = "${contact_email}" |