Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:18.20.2

WORKDIR /usr/src/app
COPY package.json .
RUN yarn install
COPY . .

CMD ["node","main.js"]
4 changes: 2 additions & 2 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
app: {
token: process.env.DISCORD_TOKEN || 'xxx',
playing: 'by the Community ❤️',
playing: 'catch the humans',
global: true,
guild: process.env.GUILD_ID || 'xxx',
extraMessages: false,
Expand Down Expand Up @@ -29,7 +29,7 @@ module.exports = {
Translate_Timeout: 10000,
maxVol: 100,
spotifyBridge: true,
volume: 75,
volume: 7,
leaveOnEmpty: true,
leaveOnEmptyCooldown: 30000,
leaveOnEnd: true,
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
services:
music-bot:
build: .
restart: always