mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
Add Barrage blueprint with Docker Compose and configuration files
- 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.
This commit is contained in:
13
blueprints/barrage/docker-compose.yml
Normal file
13
blueprints/barrage/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
barrage:
|
||||
image: maulik9898/barrage:0.3.0
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3000
|
||||
environment:
|
||||
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
|
||||
- NEXTAUTH_URL=http://${DOMAIN}
|
||||
- DELUGE_URL=${DELUGE_URL}
|
||||
- DELUGE_PASSWORD=${DELUGE_PASSWORD}
|
||||
- BARRAGE_PASSWORD=${BARRAGE_PASSWORD}
|
||||
BIN
blueprints/barrage/logo.png
Normal file
BIN
blueprints/barrage/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
15
blueprints/barrage/template.toml
Normal file
15
blueprints/barrage/template.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[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}"
|
||||
Reference in New Issue
Block a user