update plugins for navidrome and add in new container for discord music bot
This commit is contained in:
32
docker_compose/discordrome/docker-compose.yaml
Normal file
32
docker_compose/discordrome/docker-compose.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
# discodrome - https://github.com/7eventy7/discodrome
|
||||||
|
|
||||||
|
services:
|
||||||
|
discodrome:
|
||||||
|
image: 7eventy7/discodrome:latest
|
||||||
|
container_name: discodrome
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
# --- Required Variables ---
|
||||||
|
- SUBSONIC_SERVER=${SUBSONIC_SERVER_URL}
|
||||||
|
- SUBSONIC_USER=${SUBSONIC_USER}
|
||||||
|
- SUBSONIC_PASSWORD=${SUBSONIC_PASSWORD}
|
||||||
|
- SUBSONIC_AUTH_MODE=${SUBSONIC_AUTH_MODE} # 'token' or 'plaintext'
|
||||||
|
- DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN}
|
||||||
|
- DISCORD_TEST_GUILD=${DISCORD_TEST_GUILD} # SERVER ID
|
||||||
|
- DISCORD_OWNER_ID=${DISCORD_OWNER_ID}
|
||||||
|
|
||||||
|
# --- Optional: Bot Customization ---
|
||||||
|
- BOT_STATUS=Listening to Music # The "Activity" text shown under the bot's name
|
||||||
|
#- BOT_PREFIX=! # Prefix for non-slash commands
|
||||||
|
- BOT_COLOR=#6a329f # Embed color in Hex (default is Discord Blurple)
|
||||||
|
#- BOT_LANGUAGE=en # Language for the interface
|
||||||
|
|
||||||
|
# --- Optional: Music Behavior ---
|
||||||
|
#- DEFAULT_VOLUME=50 # Initial volume (0-100)
|
||||||
|
#- MAX_PLAYLIST_SIZE=500 # Limits how many songs can be queued at once
|
||||||
|
#- INACTIVITY_TIMEOUT=300 # Seconds before bot leaves empty voice channel (default: 300)
|
||||||
|
|
||||||
|
# --- Optional: Logging & Performance ---
|
||||||
|
#- LOG_LEVEL=INFO # Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
|
||||||
|
#- CACHE_SIZE=100 # Number of tracks to cache metadata for
|
||||||
|
- BOT_SEARCH_SUGGESTION_COUNT=10
|
||||||
@@ -10,7 +10,13 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ${DATA_PATH}:/data
|
- ${DATA_PATH}:/data
|
||||||
- music_nfs:/music:ro
|
- music_nfs:/music
|
||||||
|
environment:
|
||||||
|
ND_PLUGINS_ENABLED: true
|
||||||
|
ND_PLUGINS_FOLDER: "/data/plugins"
|
||||||
|
ND_PLUGINS_AUTORELOAD: true
|
||||||
|
ND_LYRICSPRIORITY: ".lrc,.txt,embedded"
|
||||||
|
ND_ENABLEINSIGHTSCOLLECTOR: false
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
music_nfs:
|
music_nfs:
|
||||||
|
|||||||
Reference in New Issue
Block a user