templates/blueprints/barrage/docker-compose.yml
Mauricio Siu d06d7ad2f7 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.
2025-03-30 14:52:23 -06:00

13 lines
343 B
YAML

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}