Difference between revisions of "Minecraft"

From Zombi Wiki
Jump to navigation Jump to search
m (added 'implements')
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
 
|name        = Minecraft
 
|name        = Minecraft
 
|status      = beta
 
|status      = beta
 +
|category    = gaming
 
|description = Severs for vanilla or modded minecraft
 
|description = Severs for vanilla or modded minecraft
 
|author      = Lod
 
|author      = Lod
Line 7: Line 8:
 
|maintainer2 = Madmaurice
 
|maintainer2 = Madmaurice
 
|location    = ravenholm
 
|location    = ravenholm
|implements  = Q49740
+
|implements  = Q85851440
 
}}
 
}}
 
== Setting up a server ==
 
== Setting up a server ==

Latest revision as of 18:04, 24 April 2020

           
Minecraft

status: beta

Description Severs for vanilla or modded minecraft
Category  gaming
Author  User:Lod
Maintainer  User:Lod
Maintainer  User:Madmaurice
Location  ravenholm
Implements  Q85851440 (wikidata)

Setting up a server

Building the image

Step 1: Add your preset to the Makeconf file

.PHONY: <packname>
<packname>: MINECRAFT=<minecraft version>
<packname>: FORGE=<forge version>
<packname>: build

If there is already a preset matching your minecraft forge version combination consider using that.

Build your preset to an image

This will build an image with the name zombi/forge-modbase:<minecraft version>-<forge version>.

make <packname>

Setting up the Container

Step 1: Create data directory

This will be the destination for the permanent date of the minecraft instance including the world and settings.

mkdir /data/minecraft/<packname>

Step 2: Run once

This will add the files to the data directory we created just now.

docker run -ti --rm -v /data/minecraft/<packname>:/minecraft zombi/forge-modbase:<minecraft version>-<forge version>

Step 3: Add mod pack to data directory

Move your mod pack into the data directory.

cp modpackdata /data/minecraft/<packname>/mods

Step 4: Create the container

Create a permanent container.

docker run -tid --name <name of your minecraft server> -v /data/minecraft/<packname>:/minecraft zombi/forge-modbase:<minecraft version>-<forge version>