7cda1b637d
* switch over (hopefully) to github based docker registery for later minetest versions as the minetest gitlab is essentially abandoned * bump min minetest version to 5.6 --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
15 lines
413 B
YAML
15 lines
413 B
YAML
version: "3.6"
|
|
|
|
services:
|
|
testserver:
|
|
image: ${ENGINE_IMAGE:-ghcr.io/minetest-hosting/minetest-docker:5.8.0}
|
|
entrypoint: "minetestserver --config /minetest.conf"
|
|
user: root
|
|
volumes:
|
|
- "./:/root/.minetest/games/dreambuilder_game/"
|
|
- "./test/world.mt:/root/.minetest/worlds/world/world.mt"
|
|
- "./test/minetest.conf:/minetest.conf"
|
|
- "world:/root/.minetest/worlds/world"
|
|
|
|
volumes:
|
|
world: {} |