forked from SudhanPlayz/Discord-MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several patches to make docker hosting easier. (#237)
1. ppl can now config most settings in `djs-bot/.env`, `dashboard/.env` and `docker/lavalink.env`. 2. make `docker/docker-compose.yml` more robust. 3. add an example of using traefik as revery proxy to hsot the bot.
- Loading branch information
Showing
8 changed files
with
266 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.env | ||
lavalink.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
FROM node:20 as builder | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y \ | ||
build-essential \ | ||
libpango1.0-dev \ | ||
libcairo2-dev \ | ||
librsvg2-dev \ | ||
libjpeg-dev \ | ||
libgif-dev \ | ||
fonts-noto-cjk fonts-noto \ | ||
apt-get install -y \ | ||
build-essential \ | ||
libpango1.0-dev \ | ||
libcairo2-dev \ | ||
librsvg2-dev \ | ||
libjpeg-dev \ | ||
libgif-dev \ | ||
fonts-noto-cjk fonts-noto | ||
RUN npm config set audit false | ||
RUN npm config set fund false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.