From 374445b7d67df5ff92dd149ee239d27a7c68d824 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 14 Aug 2021 15:40:03 +0200 Subject: [PATCH] adding downloads --- README.md | 8 ++++++++ download.bat | 1 + download.sh | 1 + 3 files changed, 10 insertions(+) create mode 100644 README.md create mode 100644 download.bat create mode 100644 download.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..c550271 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Docker image for the [bot discord "Kassoubot"](https://gitlab.com/ConfrerieDuKassoulait/KassouBot) + +## To use the docker image +Simply use this image: `registry.gitlab.com/confreriedukassoulait/lavalink:latest` + +## To use locally +Run `download.bat` if you are on Windows or `download.sh` if on Linux. +It will download the Lavalink.jar server. diff --git a/download.bat b/download.bat new file mode 100644 index 0000000..0b2f9d8 --- /dev/null +++ b/download.bat @@ -0,0 +1 @@ +powershell -command "Invoke-WebRequest -Uri https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar -OutFile Lavalink.jar" diff --git a/download.sh b/download.sh new file mode 100644 index 0000000..1ccb491 --- /dev/null +++ b/download.sh @@ -0,0 +1 @@ +curl -Lo Lavalink.jar https://github.com/freyacodes/Lavalink/releases/download/3.3.2.5/Lavalink.jar