-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8264761
commit ba960a8
Showing
5 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
ARG ENGINE_VERSION=5.5.0 | ||
FROM registry.gitlab.com/minetest/minetest/server:${ENGINE_VERSION} | ||
ARG ENGINE_IMAGE=ghcr.io/minetest-hosting/minetest-docker:5.8.0 | ||
|
||
FROM ${ENGINE_IMAGE} | ||
ARG MTG_VERSION=master | ||
USER root | ||
RUN apk add git &&\ | ||
mkdir -p /root/.minetest/worlds/world/worldmods/ &&\ | ||
cd /root/.minetest/worlds/world/worldmods/ &&\ | ||
git clone --depth 1 https://github.com/BuckarooBanzay/mtt &&\ | ||
git clone --recurse-submodules --depth 1 https://github.com/mt-mods/basic_materials.git &&\ | ||
git clone --depth 1 https://github.com/mt-mods/pipeworks.git &&\ | ||
git clone --depth 1 https://github.com/minetest-mods/moreores.git | ||
git clone --depth 1 https://github.com/minetest-mods/moreores.git &&\ | ||
mkdir /root/.minetest/games &&\ | ||
git clone https://github.com/minetest/minetest_game.git /root/.minetest/games/minetest &&\ | ||
cd /root/.minetest/games/minetest &&\ | ||
git checkout ${MTG_VERSION} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
default_game = minetest_game | ||
mg_name = v7 | ||
mtt_enable = true | ||
deprecated_lua_api_handling = error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
name = technic | ||
description = The technic modpack extends the Minetest game with many new elements, mainly constructable machines and tools. It is a large modpack, and tends to dominate gameplay when it is used. | ||
min_minetest_version = 5.0 | ||
min_minetest_version = 5.5 |