08-16-2019, 03:15 AM
Hello everyone!
I want to inform you that i've created a Docker image (mainly for Unraid) for Xonotic Dedicated Server it will automaticaly download the prefered version entered in the startup commands, download all the needed files and start it.
Here are the startup commands:
GAME_PARAMS = Enter your extra start up commands for the server if needed otherwise leave blank.
GAME_VERSON = Enter your prefered game version (downgrade and upgrade is always possible) the docker will check for a newer version or the prefered version on startup
UID = the UID of the User (don't change unless you know what you are doing)
GID = the GID of the Group (don't change unless you know what you are doing)
volume = the path where to save the files on your server to get easy acces to
restart=unless-stopped = the container will automaticaly restart if it crashes
If anyone has any questions feel free to ask.![[Image: icon_wink.gif]](https://www.tt-forums.net/images/smilies/icon_wink.gif)
Regards, ich777
I want to inform you that i've created a Docker image (mainly for Unraid) for Xonotic Dedicated Server it will automaticaly download the prefered version entered in the startup commands, download all the needed files and start it.
Here are the startup commands:
Code:
docker run --name Xonotic -d \
-p 3979:3979/tcp \
-p 3979:3979/udp \
--env 'GAME_PARAMS=' \
--env 'GAME_VERSION=0.8.2' \
--env 'UID=99' \
--env 'GID=100' \
--volume /mnt/user/appdata/xonotic:/serverdata/serverfiles \
--restart=unless-stopped \
ich777/xonotic:latest
GAME_PARAMS = Enter your extra start up commands for the server if needed otherwise leave blank.
GAME_VERSON = Enter your prefered game version (downgrade and upgrade is always possible) the docker will check for a newer version or the prefered version on startup
UID = the UID of the User (don't change unless you know what you are doing)
GID = the GID of the Group (don't change unless you know what you are doing)
volume = the path where to save the files on your server to get easy acces to
restart=unless-stopped = the container will automaticaly restart if it crashes
If anyone has any questions feel free to ask.
![[Image: icon_wink.gif]](https://www.tt-forums.net/images/smilies/icon_wink.gif)
Regards, ich777