initial commit
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user