Skip to content

Commit e2fd90f

Browse files
committed
Initial commit
0 parents  commit e2fd90f

File tree

4 files changed

+265
-0
lines changed

4 files changed

+265
-0
lines changed

Dockerfile

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# -----------
2+
# Build stage
3+
# -----------
4+
5+
FROM ubuntu:18.04 AS build
6+
LABEL maintainer=jwestp
7+
WORKDIR /stk
8+
9+
# Set stk version that should be built
10+
ENV VERSION=1.1
11+
12+
# Install build dependencies
13+
RUN apt-get update && \
14+
apt-get install -y build-essential \
15+
cmake \
16+
git \
17+
libcurl4-openssl-dev \
18+
libenet-dev \
19+
libssl-dev \
20+
pkg-config \
21+
subversion \
22+
zlib1g-dev
23+
24+
# Get code and assets
25+
RUN git clone --branch ${VERSION} --depth=1 https://github.com/supertuxkart/stk-code.git
26+
RUN svn checkout https://svn.code.sf.net/p/supertuxkart/code/stk-assets-release/${VERSION}/ stk-assets
27+
28+
# Build server
29+
RUN mkdir stk-code/cmake_build && \
30+
cd stk-code/cmake_build && \
31+
cmake .. -DSERVER_ONLY=ON && \
32+
make -j$(nproc) && \
33+
make install
34+
35+
# -----------
36+
# Final stage
37+
# -----------
38+
39+
FROM ubuntu:18.04
40+
LABEL maintainer=jwestp
41+
WORKDIR /stk
42+
43+
# Install libcurl dependency
44+
RUN apt-get update && \
45+
apt-get install -y libcurl4-openssl-dev && \
46+
rm -rf /var/lib/apt/lists/*
47+
48+
# Copy artifacts from build stage
49+
COPY --from=build /usr/local/bin/supertuxkart /usr/local/bin
50+
COPY --from=build /usr/local/share/supertuxkart /usr/local/share/supertuxkart
51+
52+
# Expose ports
53+
EXPOSE 2757
54+
EXPOSE 2759
55+
56+
# On container startup log in with username and password if given and start the server
57+
CMD if [ -n ${USERNAME} -a -n ${PASSWORD} ]; then \
58+
supertuxkart --init-user --login=${USERNAME} --password=${PASSWORD}; \
59+
fi && \
60+
supertuxkart --server-config=server_config.xml

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Docker SuperTuxKart Server
2+
3+
This is a docker image for deploying a [SuperTuxKart](https://supertuxkart.net) server.
4+
5+
## What is SuperTuxKart?
6+
7+
SuperTuxKart (STK) is a free and open-source kart racing game, distributed under the terms of the GNU General Public License, version 3. It features mascots of various open-source projects. SuperTuxKart is cross-platform, running on Linux, macOS, Windows, and Android systems. Version 1.0 was officially released on April 20, 2019.
8+
9+
SuperTuxKart started as a fork of TuxKart, originally developed by Steve and Oliver Baker in 2000. When TuxKart's development ended around March 2004, a fork as SuperTuxKart was conducted by other developers in 2006. SuperTuxKart is under active development by the game's community.
10+
11+
> [wikipedia.org/wiki/SuperTuxKart](https://en.wikipedia.org/wiki/SuperTuxKart)
12+
13+
![logo](supertuxkart-logo.png)
14+
15+
## How to use this image
16+
17+
The image exposes ports 2759 (server) and 2757 (server discovery). The server should be configured using your own server config file. The config file template can be found [here](server_config.xml). Mount it at `/stk/server_config.xml`:
18+
19+
```
20+
$ docker run --name my-stk-server \
21+
-d \
22+
-p 2757:2757 \
23+
-p 2759:2759 \
24+
-v $(pwd)/server_config.xml:/stk/server_config.xml \
25+
jwestp/supertuxkart:1.1
26+
```
27+
28+
For hosting a public internet server (by setting `wan-server` to `true` in the config file) it is required to log in with your STK account. You can register a free account [here](https://online.supertuxkart.net/register.php). Pass your username and password to the container via environment variables.
29+
30+
```
31+
$ docker run --name my-stk-server \
32+
-d \
33+
-p 2757:2757 \
34+
-p 2759:2759 \
35+
-v $(pwd)/server_config.xml:/stk/server_config.xml \
36+
-e USERNAME=myusername \
37+
-e PASSWORD=mypassword \
38+
jwestp/supertuxkart:1.1
39+
```

server_config.xml

+166
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
<?xml version="1.0"?>
2+
<server-config version="6" >
3+
4+
<!-- Name of server, encode in XML if you want to use unicode characters. -->
5+
<server-name value="STK Server" />
6+
7+
<!-- Port used in server, if you specify 0, it will use the server port specified in stk_config.xml. If you wish to use a random port, set random-server-port to '1' in user config. STK will automatically switch to a random port if the port you specify fails to be bound. -->
8+
<server-port value="0" />
9+
10+
<!-- Game mode in server, 0 is normal race (grand prix), 1 is time trial (grand prix), 3 is normal race, 4 time trial, 6 is soccer, 7 is free-for-all and 8 is capture the flag. Notice: grand prix server doesn't allow for players to join and wait for ongoing game. -->
11+
<server-mode value="3" />
12+
13+
<!-- Difficulty in server, 0 is beginner, 1 is intermediate, 2 is expert and 3 is supertux (the most difficult). -->
14+
<server-difficulty value="0" />
15+
16+
<!-- Number of grand prix tracks per game (If grand prix enabled). -->
17+
<gp-track-count value="3" />
18+
19+
<!-- Use goal target in soccer. -->
20+
<soccer-goal-target value="false" />
21+
22+
<!-- Enable wan server, which requires you to have an stk-addons account with a saved session. Check init-user command for details. -->
23+
<wan-server value="true" />
24+
25+
<!-- Enable network console, which can do for example kickban. -->
26+
<enable-console value="false" />
27+
28+
<!-- Maximum number of players on the server, setting this to a value greater than 8 can cause performance degradation. -->
29+
<server-max-players value="8" />
30+
31+
<!-- Password for private server, leave empty for a public server. -->
32+
<private-server-password value="" />
33+
34+
<!-- Message of today shown in lobby, you can enter encoded XML words here or a file.txt and let STK load it. -->
35+
<motd value="" />
36+
37+
<!-- If this value is set to false, the server will ignore chat messages from all players. -->
38+
<chat value="true" />
39+
40+
<!-- If client sends more than chat-consecutive-interval / 2 chats within this value (read in seconds), it will be ignore, negative value to disable. -->
41+
<chat-consecutive-interval value="8" />
42+
43+
<!-- Allow players to vote for which track to play. If this value is set to false, the server will randomly pick the next track to play. -->
44+
<track-voting value="true" />
45+
46+
<!-- Timeout in seconds for selecting karts and (or) voting tracks in server, you may want to use a lower value if you have track-voting off. -->
47+
<voting-timeout value="30" />
48+
49+
<!-- Timeout in seconds for validation of clients in wan, currently STK will use the stk-addons server to share AES key between the client and server. -->
50+
<validation-timeout value="20" />
51+
52+
<!-- By default WAN server will always validate player and LAN will not, disable it to allow non-validated player in WAN. -->
53+
<validating-player value="true" />
54+
55+
<!-- Disable it to turn off all stun related code in server, it allows for saving of server resources if your server is not behind a firewall. -->
56+
<firewalled-server value="true" />
57+
58+
<!-- Enable to allow IPv6 connection if you have a public IPv6 address. STK currently uses dual-stack mode which requires server to have both IPv4 and IPv6 and listen to same port. If STK detects your server has no public IPv6 address or port differs between IPv4 and IPv6 then it will use IPv4 only socket. For system which doesn't support dual-stack socket (like OpenBSD) you may fail to be connected by IPv4 clients. -->
59+
<ipv6-connection value="true" />
60+
61+
<!-- No server owner in lobby which can control the starting of game or kick any players. -->
62+
<owner-less value="false" />
63+
64+
<!-- Time to wait before entering kart selection screen if satisfied min-start-game-players below for owner less or ranked server. -->
65+
<start-game-counter value="60" />
66+
67+
<!-- Clients below this value will be rejected from joining this server. It's determined by number of official karts in client / number of official karts in server -->
68+
<official-karts-threshold value="1" />
69+
70+
<!-- Clients below this value will be rejected from joining this server. It's determined by number of official tracks in client / number of official tracks in server, setting this value too high will prevent android players from joining this server, because STK android apk has some official tracks removed. -->
71+
<official-tracks-threshold value="0.7" />
72+
73+
<!-- Only auto start kart selection when number of connected player is larger than or equals this value, for owner less or ranked server, after start-game-counter reaches 0. -->
74+
<min-start-game-players value="2" />
75+
76+
<!-- Automatically end linear race game after 1st player finished for some time (currently his finished time * 0.25 + 15.0). -->
77+
<auto-end value="false" />
78+
79+
<!-- Enable team choosing in lobby in team game (soccer and CTF). If owner-less is enabled and live-players is not enabled, than this option is always disabled. -->
80+
<team-choosing value="true" />
81+
82+
<!-- If strict-players is on, no duplicated online id or split screen players are allowed, which can prevent someone using more than 1 network AI with this server. -->
83+
<strict-players value="false" />
84+
85+
<!-- Server will submit ranking to stk-addons server for linear race games, you require permission for that. validating-player, auto-end, strict-player and owner-less will be turned on. -->
86+
<ranked value="false" />
87+
88+
<!-- If true, the server owner can config the difficulty and game mode in the GUI of lobby. This option cannot be used with owner-less or grand prix server, and will be automatically turned on if the server was created using the in-game GUI. The changed difficulty and game mode will not be saved in this config file. -->
89+
<server-configurable value="false" />
90+
91+
<!-- If true, players can live join or spectate the in-progress game. Currently live joining is only available if the current game mode used in server is FFA, CTF or soccer, also no addon karts will be available for players to choose, and official-karts-threshold will be made 1.0. -->
92+
<live-players value="true" />
93+
94+
<!-- Time in seconds when a flag is dropped a by player in CTF returning to its own base. -->
95+
<flag-return-timeout value="20" />
96+
97+
<!-- Time in seconds to deactivate a flag when it's captured or returned to own base by players. -->
98+
<flag-deactivated-time value="3" />
99+
100+
<!-- Hit limit of free for all, zero to disable hit limit. -->
101+
<hit-limit value="20" />
102+
103+
<!-- Time limit of free for all in seconds, zero to disable time limit. -->
104+
<time-limit-ffa value="360" />
105+
106+
<!-- Capture limit of CTF, zero to disable capture limit. -->
107+
<capture-limit value="5" />
108+
109+
<!-- Time limit of CTF in seconds, zero to disable time limit. -->
110+
<time-limit-ctf value="600" />
111+
112+
<!-- Value used by server to automatically estimate each game time. For races, it decides the lap of each race in network game, if more than 0.0f, the number of lap of each track vote in linear race will be determined by max(1.0f, auto-game-time-ratio * default lap of that track). For soccer if more than 0.0f, for time limit game it will be auto-game-time-ratio * soccer-time-limit in UserConfig, for goal limit game it will be auto-game-time-ratio * numgoals in UserConfig, -1 to disable for all. -->
113+
<auto-game-time-ratio value="-1" />
114+
115+
<!-- Maximum ping allowed for a player (in ms), it's recommended to use default value if live-players is on. -->
116+
<max-ping value="300" />
117+
118+
<!-- Tolerance of jitter in network allowed (in ms), it's recommended to use default value if live-players is on. -->
119+
<jitter-tolerance value="100" />
120+
121+
<!-- Kick players whose ping is above max-ping. -->
122+
<kick-high-ping-players value="false" />
123+
124+
<!-- Allow players exceeding max-ping to have a playable game, if enabled kick-high-ping-players will be disabled, please also use a default value for max-ping and jitter-tolerance with it. -->
125+
<high-ping-workaround value="true" />
126+
127+
<!-- Kick idle player which has no network activity to server for more than some seconds during game, unless he has finished the race. Negative value to disable, and this option will always be disabled for LAN server. -->
128+
<kick-idle-player-seconds value="60" />
129+
130+
<!-- Set how many states the server will send per second, the higher this value, the more bandwidth requires, also each client will trigger more rewind, which clients with slow device may have problem playing this server, use the default value is recommended. -->
131+
<state-frequency value="10" />
132+
133+
<!-- Use sql database for handling server stats and maintenance, STK needs to be compiled with sqlite3 supported. -->
134+
<sql-management value="false" />
135+
136+
<!-- Database filename for sqlite to use, it can be shared for all servers created in this machine, and STK will create specific table for each server. You need to create the database yourself first, see NETWORKING.md for details -->
137+
<database-file value="stkservers.db" />
138+
139+
<!-- Specified in millisecond for maximum time waiting in sqlite3_busy_handler. You may need a higher value if your database is shared by many servers or having a slow hard disk. -->
140+
<database-timeout value="1000" />
141+
142+
<!-- IPv4 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) whichallows live kicking peer by inserting record to database. -->
143+
<ip-ban-table value="ip_ban" />
144+
145+
<!-- IPv6 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
146+
<ipv6-ban-table value="ipv6_ban" />
147+
148+
<!-- Online ID ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
149+
<online-id-ban-table value="online_id_ban" />
150+
151+
<!-- Player reports table name, which will be written when a player reports player in the network user dialog, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. -->
152+
<player-reports-table value="player_reports" />
153+
154+
<!-- Days to keep player reports, older than that will be auto cleared, 0 to keep them forever. -->
155+
<player-reports-expired-days value="3" />
156+
157+
<!-- IP geolocation table, you only need this table if you want to geolocate IP from non-stk-addons connection, as all validated players connecting from stk-addons will provide the location info, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. -->
158+
<ip-geolocation-table value="ip_mapping" />
159+
160+
<!-- IPv6 geolocation table, you only need this table if you want to geolocate IP from non-stk-addons connection, as all validated players connecting from stk-addons will provide the location info, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. -->
161+
<ipv6-geolocation-table value="ipv6_mapping" />
162+
163+
<!-- If true this server will auto add / remove AI connected with network-ai=x, which will kick N - 1 bot(s) where N is the number of human players. Only use this for non-GP racing server. -->
164+
<ai-handling value="false" />
165+
166+
</server-config>

supertuxkart-logo.png

29.1 KB
Loading

0 commit comments

Comments
 (0)