chore(docker): switch to pnpm, update Dockerfile, docker-compose, and README

This commit is contained in:
2025-04-23 23:27:29 +08:00
parent 170faf7d01
commit 95ea55d972
3 changed files with 9 additions and 19 deletions

View File

@@ -1,16 +1,13 @@
version: '3.8'
services:
lavalink:
image: jagrosh/lavalink:latest
image: fredboat/lavalink:latest
container_name: lavalink
ports:
- "2333:2333"
environment:
- LAVALINK_PASSWORD=${LAVALINK_PASSWORD}
volumes:
# Optional: mount custom configuration if needed
# - ./application.yml:/opt/Lavalink/application.yml
- ./application.yml:/opt/Lavalink/application.yml:ro,Z
bot:
build: .
@@ -20,5 +17,6 @@ services:
environment:
- LAVALINK_HOST=lavalink
- LAVALINK_PORT=2333
- LAVALINK_PASSWORD=${LAVALINK_PASSWORD}
depends_on:
- lavalink