DEV Community

dozo
dozo

Posted on • Updated on

How To install Multiverse in fabric with Docker

I'd like to add resource server in my Fabric Mod server.
Unfortunately, Fabric is not support Multiverse plugins.

One day, I searched about Fabric and PaperMC and I found Bukkit4Fabric Mod.
I try to install but it's very difficult.

Require

Prepare to install

Make Data Directory(Folder)

$ mkdir ~/minecraft
Enter fullscreen mode Exit fullscreen mode

Installation

name detail
Install Director ~/minecraft
UserID Dozo

Install Fabric Server

docker run
$ docker run -d -v ~/minecraft:/data -p 25565:25565 -e TYPE=FABRIC -e EULA=TRUE -e OPS=Dohzoh --name fb01 itzg/minecraft-server:adopt11
Enter fullscreen mode Exit fullscreen mode
name detail
TYPE Server type
EULA ...
OPS Operator User
adopt11 Use Java11
Login Minecraft

Select MultiServer
Minecraft 1.16.3 2020_10_09 9_04_25_r

Connect localhost
Minecraft 1.16.3 2020_10_09 9_14_31_r

Minecraft 1.16.3 - Multiplayer (3rd-party Server) 2020_10_10 12_58_03_r

Login Success!

2021-01-27_21.11.15_r (2)

Fabric server confirmed

Add Bukkit4Fabric and Multiverse-Core Mod

Download Modules

Download Bukkit4Fabric in your mods directory.
Use Bukkit4Fabric ver#135 because can't boot latest ver.
Complete to boot then stop server.

$ docker stop fb01
$ cd ~/minecraft/mods/
$ wget https://ci.codemc.io/job/IsaiahPatton/job/Cardboard/135/artifact/build/libs/Bukkit4Fabric-1.16.4.jar
$ docker start fb01
Enter fullscreen mode Exit fullscreen mode

(。-ω-)zzz

Delete All old world then add Multiverse-Core Mod in your directory plugins directory.

$ docker stop fb01
$ rm -Rf ./world*
$ cd ~/minecraft/plugins/
$ wget http://ci.onarandombox.com/view/Multiverse/job/Multiverse-Core/lastSuccessfulBuild/artifact/target/Multiverse-Core-4.2.3-SNAPSHOT.jar
$ docker start fb01
Enter fullscreen mode Exit fullscreen mode

(。-ω-)zzz. . . (。゚ω゚) HA!

Make Another World

Login Minecraft and execute CREATE command.

2021-01-27_23.16.40 (2)

/mv create multiworld normal
Starting creation world 'multiworld'
...
Complete!
Enter fullscreen mode Exit fullscreen mode
Teleport to Another World

2021-01-27_23.16.11 (2)

/mvtp Dozo multiworld
Enter fullscreen mode Exit fullscreen mode

2021-01-27_23.15.08

Top comments (0)