From 93551363484396aaa02b93c866145565bd3acff2 Mon Sep 17 00:00:00 2001 From: Astin Date: Mon, 4 Sep 2023 01:00:59 +0100 Subject: [PATCH 1/2] Fixed docker-compose lavalink with stable version, updated readme --- README.md | 20 +++++++++++++++++++- docker-compose.yml | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22bac2873..df8198b6b 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,25 @@ What do you gain from it? Let us explain: ## 📝 | Tutorial -Soon +### 🐳 Docker +> The `config.js` file should be configured with the host `"lavalink"`, and you should use the same `password` as in `docker/application.yml`. + +Build and start bot and lavalink +```sh +docker-compose up -d --build +``` +### 💪🏻 Non-Docker +> The `config.js` file should be configured first. + +Install all dependencies and deploy Slash Commands +```sh +npm install +npm run deploy +``` +Start the bot +```sh +node index.js +``` ## 📝 | [Support Server](https://discord.gg/sbySMS7m3v) diff --git a/docker-compose.yml b/docker-compose.yml index 116b03f5b..d71fe819e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: - ./config.js:/usr/src/app/config.js:ro lavalink: - image: fredboat/lavalink:dev + image: fredboat/lavalink:439f122 container_name: music-lavalink hostname: lavalink restart: unless-stopped From 23960ec123f62b8325614541e96b1f260c3657a6 Mon Sep 17 00:00:00 2001 From: Astin Date: Mon, 4 Sep 2023 01:15:25 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df8198b6b..8ecfb43e5 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Build and start bot and lavalink docker-compose up -d --build ``` ### 💪🏻 Non-Docker -> The `config.js` file should be configured first. +> The `config.js` file should be configured first. Don't forget to add a lavalink host Install all dependencies and deploy Slash Commands ```sh