10 lines
286 B
Bash
10 lines
286 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
docker run --rm -it \
|
||
|
-u root:root \
|
||
|
-v $(pwd)/minetest.conf:/etc/minetest/minetest.conf \
|
||
|
-v $(pwd)/../:/root/.minetest/worlds/world/worldmods/beerchat \
|
||
|
-v mail_world:/root/.minetest/worlds/world/ \
|
||
|
--network host \
|
||
|
registry.gitlab.com/minetest/minetest/server:5.2.0
|