Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1.04 KB

File metadata and controls

34 lines (29 loc) · 1.04 KB

minecraft-forge

dockerfile to run and administrate a minecraft forge server easily.

this docker file is base over the minecraft-vanilla available at https://github.com/Timmy80/minecraft-vanilla. It mean it provides the same features regarding backups, commands, ...

How to build

Using the makefile (Only for the latest release of minecraft available with forge)

To build the latest recommended release of minecraft forge:

$ make

To build the latest realease of minecraft forge (not the recommended version):

$ make forge-latest

To clean all minecraft forge running container and minecraft forge images:

$ make clean

You have also an help:

$ make help

Using docker build (for any version of minecraft)

Example to build the recommended version of forge for minecraft 1.12.1:

$ docker build --build-arg MINECRAFT_VERSION=1.12.1 FORGE_TARGET=recommended -t overware/minecraft-forge:1.12.1 ./

Want to know more ?

Go checkout the minecraft-vanilla.