Warning, /rolisteam/rolisteam-packaging/rolisteam/Docker/server/README.md is written in an unsupported language. File is not indexed.

0001 ## Dockerfile for building a roliserver container which can be used to host multiple games. 
0002 
0003 Copy the docker file to a build directory and run the following.
0004 
0005     docker build -t rolisteam:debian .
0006 
0007 The resulting image can be then run as:
0008 
0009     docker run -d  --name rolisteam-server -p 6660:6660 rolisteam:debian
0010 
0011 
0012 The default config file will be used which uses the default port of 6660 and default blank password for the Admin user.
0013 
0014 This are exported to `/opt/default.config` and run against. 
0015 
0016     [General]
0017     AdminPassword=@Invalid()
0018     ChannelCount=1
0019     ConnectionMax=50
0020     DeepInspectionLog=false
0021     IpBan=
0022     IpMode=
0023     IpRange=
0024     LogFile=
0025     LogLevel=1
0026     MaxMemorySize=@Invalid()
0027     ServerPassword=
0028     ThreadCount=1
0029     TimeEnd=
0030     TimeStart=
0031     TimeToRetry=100
0032     TryCount=10
0033     port=6660
0034 
0035 
0036 
0037 These can be changed after image creation by logging into the container and editing the file.
0038 
0039     docker exec -it rolisteam-server /bin/bash