mega-minecraft

megabrain minecraft server

if you are Player

read this.

install modes

# mac version
cd ~/.minecraft/mods
while IFS = read -r line
do
  line=$(echo $line | sed -e 's/#.*//') # remove comments
  if [ ! "$line" ]; then continue; fi # skip empty lines
  curl -O "$line" # download mod from cdn
done < "mods.txt"

if you are Server Owner

read this.

run minecraft server detached mode

docker compose up -d

check minecraft server status

docker compose ps

check minecraft server logs

docker compose logs -f

stop minecraft server

docker compose down