mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Barrage service, including environment variables and port configuration. - Added logo for Barrage. - Created template.toml for Barrage with default variables for configuration. - Updated meta.json to include Barrage with detailed description, logo, and relevant links.
15 lines
323 B
TOML
15 lines
323 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "barrage"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
NEXTAUTH_SECRET = "${base64}"
|
|
NEXTAUTH_URL = "http://${main_domain}"
|
|
DELUGE_URL = "http://your-deluge-ip:8112"
|
|
DELUGE_PASSWORD = "${password:16}"
|
|
BARRAGE_PASSWORD = "${password:16}" |