podman pull quay.io/gopher64/gopher64-netplay-server:latest
./gopher64-netplay-server --name "Server Name"
cat << EOF > pod.yaml
apiVersion: v1
kind: Pod
metadata:
  name: netplay_pod
  namespace: netplay
spec:
  hostNetwork: true
  containers:
    - name: netplay_container
      image: quay.io/gopher64/gopher64-netplay-server:latest
      args:
        - "--name"
        - "My Server"
        - "--baseport"
        - "45000"
EOF
podman play kube pod.yaml
The server is discoverable on a LAN. When the server is running, clients on the same LAN should find the server automatically.
The server will be listening on ports 45000-45010 by default, using TCP and UDP. Firewalls will need to be configured to allow connections on these ports.