initial commit

This commit is contained in:
2026-07-07 15:18:13 +02:00
commit 627ff396b7
29 changed files with 1674 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Runs a Lavalink v4 server for the bot to connect to.
# docker compose up -d # start in background
# docker compose logs -f # watch logs
# docker compose down # stop
#
# The bot connects to ws://localhost:2333 with the password below (see .env).
services:
lavalink:
image: ghcr.io/lavalink-devs/lavalink:4
container_name: lavalink
restart: unless-stopped
environment:
- _JAVA_OPTIONS=-Xmx1G
volumes:
- ./lavalink/application.yml:/opt/Lavalink/application.yml:ro
- ./lavalink/plugins/:/opt/Lavalink/plugins/
ports:
- "2333:2333"