Skip to content

Commit

Permalink
fix(configs/lavalink.json, docker-compose.yml): update host in lavali…
Browse files Browse the repository at this point in the history
…nk config and add lavalink service to docker-compose configuration
  • Loading branch information
Nat1anWasTaken committed May 13, 2024
1 parent 204045b commit e2ad26d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion configs/lavalink.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"nodes": [
{
"host": "localhost",
"host": "lavalink",
"port": 2333,
"password": "youshallnotpass",
"name": "local",
Expand Down
15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,18 @@ services:
- stack.env
volumes:
- "./configs:/lava/configs"
depends_on:
- lavalink
networks:
- lava

lavalink:
image: ghcr.io/lavalink-devs/lavalink:latest
volumes:
- "./configs/application.yml:/opt/Lavalink/application.yml"
hostname: lavalink
networks:
- lava

networks:
lava:

0 comments on commit e2ad26d

Please sign in to comment.