Search the Community
Showing results for tags 'docker'.
Found 1 result
-
[GUIDE] Host a Reflex dedicated server on linux with docker and wine
LKSR posted a question in Support
Want to run a server on linux? Here is a tutorial on how to host a Reflex dedicated server on linux with docker and wine. All credits go to alexfoo on Reddit who made this tutorial: Original post: https://www.reddit.com/r/reflex/comments/3rcjgz/host_a_reflex_dedicated_server_on_linux_with/?ref=share&ref_source=link Tested on Debian 8. I. How to install docker: Add docker key in repo:# sudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609DInstall repo in apt-source:# echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.listUpdate repo:# sudo apt-get updateInstall docker-engine:# sudo apt-get install docker-engine II. Build Reflex docker: Download zip containing required files: https://github.com/alexfoo/reflexded-docker/archive/master.zipUnzip archive:# tar -xvzf reflexded-docker-master.zipFollow alexfoo's tutorial:Update reflex/dedicatedserver.cfg with your hostnameBuild the base: # pushd base; docker build -t alex/steam-base-wine .; popdBuild the reflex image: # pushd reflex; docker build -t alex/reflexded .; popdStart your server: # docker run -d -p 25787:25787/udp -p 25797:25797/udp --user steam alex/reflexded /start.sh III. Update Reflex docker: If you want to update the reflex server when a new version comes out, rebuild the image with: # pushd reflex; docker build -t alex/reflexded .; popd- 1 reply
-
- docker
- dedicated server
-
(and 2 more)
Tagged with: