Connecting through docker compose

I can't connect to the node for some reason, do you know why?
version: '3.8'

services:
bot:
image: imlightymc/hera:latest
environment:
- botToken=<your bot token>
- clientId=<your application client id>
- clientSecret=<your application client secret>
- environment=prod
- guildId=<the bot's support guild id>
- lavalinkHost=hera-lavalink
networks:
- lavalink
depends_on:
- lavalink
lavalink:
container_name: hera-lavalink
image: ghcr.io/lavalink-devs/lavalink:v4
restart: unless-stopped
environment:
- _JAVA_OPTIONS=-Xmx1G
- SERVER_PORT=2333
- LAVALINK_SERVER_PASSWORD=youshallnotpass
volumes:
- ./application.yml:/opt/Lavalink/application.yml
- ./plugins/:/opt/Lavalink/plugins/
networks:
- lavalink

networks:
lavalink:
name: lavalink
version: '3.8'

services:
bot:
image: imlightymc/hera:latest
environment:
- botToken=<your bot token>
- clientId=<your application client id>
- clientSecret=<your application client secret>
- environment=prod
- guildId=<the bot's support guild id>
- lavalinkHost=hera-lavalink
networks:
- lavalink
depends_on:
- lavalink
lavalink:
container_name: hera-lavalink
image: ghcr.io/lavalink-devs/lavalink:v4
restart: unless-stopped
environment:
- _JAVA_OPTIONS=-Xmx1G
- SERVER_PORT=2333
- LAVALINK_SERVER_PASSWORD=youshallnotpass
volumes:
- ./application.yml:/opt/Lavalink/application.yml
- ./plugins/:/opt/Lavalink/plugins/
networks:
- lavalink

networks:
lavalink:
name: lavalink
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?