Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 739 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 739 Bytes

MineBotProtocol

Simple Minecraft client bot. I normally use this for keeping my farms running AFK during the night.

Usage

With env file:

docker run -d --name minebot \
--env-file /path/to/env \ # Replace with your env file. Check the example in .env.example \
ghcr.io/arantesxyz/minebotprotocol/minebotprotocol:latest

With command line env variables:

docker run -d --name minebot \
-e BOT_NAME=John \ # Put your email instead for online-mode=true
-e BOT_PASS=123456 \ # Remove this line if online-mode=false
-e SERVER_HOST=localhost \
-e SERVER_PORT=25565 \
ghcr.io/arantesxyz/minebotprotocol/minebotprotocol:latest

TODO

  • Create multiplataform docker builds (focus on ARM)
  • Create kubernetes deployment