diff --git a/README.md b/README.md index 5dedf38f..2f4cbaf1 100644 --- a/README.md +++ b/README.md @@ -392,15 +392,6 @@ This works well if you want to have a common set of plugins in a separate location, but still have multiple worlds with different server requirements in either persistent volumes or a downloadable archive. -### Building an image with plugins - -You can also create your own Docker images by extending the `itzg/minecraft-server` image. -The image contains an `ONBUILD` trigger that will copy a `plugins.yml` file from you build directory and download any plugins specified in it. - -You can read about the [`ToF-BuildTools` and how to use them here](https://git.faldoria.de/tof/server/build-tools). - -You can also find [an example](examples/ToF-build/) with a custom image in the examples dir. - ## Running a PaperSpigot server Enable PaperSpigot server mode by adding a `-e TYPE=PAPER -e VERSION=1.9.4` to your command-line. diff --git a/examples/ToF-build/Dockerfile b/examples/ToF-build/Dockerfile deleted file mode 100644 index efb98d3a..00000000 --- a/examples/ToF-build/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM itzg/minecraft-server - -ENV TYPE=SPIGOT \ No newline at end of file diff --git a/examples/ToF-build/plugins.yml b/examples/ToF-build/plugins.yml deleted file mode 100644 index 0968449d..00000000 --- a/examples/ToF-build/plugins.yml +++ /dev/null @@ -1,13 +0,0 @@ -plugins: - worldedit: - file: WorldEdit.jar - url: https://dev.bukkit.org/projects/worldedit/files/latest - FastAsyncWorldEdit: - file: FastAsyncWorldEdit.jar - url: https://empcraft.com/fawe/latest.php?bukkit - worldguard: - file: WorldGuard.jar - url: https://dev.bukkit.org/projects/worldguard/files/latest - citizens: - file: Citizens.jar - url: https://dev.bukkit.org/projects/citizens/files/latest \ No newline at end of file