diff --git a/Dockerfile b/Dockerfile index 8bb35b0..35540a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,5 +76,5 @@ RUN chmod -v +x /etc/service/*/run /etc/my_init.d/*.sh VOLUME /config/.minetest # expose port -EXPOSE 30000 +EXPOSE 30000/udp diff --git a/README.md b/README.md index 9f4bd04..83499e8 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,14 @@ Minetest is a near-infinite-world block sandbox game and a game engine, inspired ## Usage ``` -docker create --name=minetest -v :/config/.minetest -e PGID= -e PUID= -e TZ= -p 30000:30000 lsiodev/minetest +docker create --name=minetest -v :/config/.minetest \ +-e PGID= -e PUID= -e TZ= \ +-p 30000:30000/udp lsiodev/minetest ``` **Parameters** -* `-p 30000` - the port(s) +* `-p 30000/udp` - the port(s) * `-v /config/.minetest` - where minetest stores config files and maps etc. * `-e PGID` for GroupID - see below for explanation * `-e PUID` for UserID - see below for explanation @@ -41,6 +43,7 @@ You can find the world maps, mods folder and config files in /config/.minetest. ## Versions ++ **19.02.2016:** Change port to UDP, thanks to slashopt for pointing this out. + **15.02.2016:** Make minetest app a service. + **01-02-2016:** Add lua-socket dependency. + **06.11.2015:** Initial Release.