58c6bff13a
* add 5.10 * use `command` instead of entrypoint (uses the correct luanti/minetest binary) * use latest luanti container for automerge test and as docker-compose default * drop 5.6 from ci --------- Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
15 lines
386 B
YAML
15 lines
386 B
YAML
version: "3.6"
|
|
|
|
services:
|
|
testserver:
|
|
image: ${ENGINE_IMAGE:-ghcr.io/minetest/minetest:latest}
|
|
command: ["--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: {} |