jbpratt / supertuxkart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

supertuxkart server

For hosting a server, please read and follow any guidelines outlined here.

Run on podman/docker

# write out and customize the server_config.xml file (found in above link)
podman run \
  --detach \
  --network=host \
  --env STK_USERNAME=${STK_USERNAME} \
  --env STK_PASSWORD=${STK_PASSWORD} \
  --volume config/:/tmp/config/ \
  ghcr.io/jbpratt/supertuxkart/server:latest --server-config=/tmp/config/server_config.xml

Run on Kubernetes

kubectl kustomize https://github.com/jbpratt/supertuxkart | kubectl apply -f -
# add credentials to the secret created
kubectl edit secret credentials -n supertuxkart
# customize the server_config.xml
kubectl edit cm config -n supertuxkart

About


Languages

Language:Dockerfile 83.7%Language:Shell 16.3%