From 0f27ac2da8c2ccae576a2d55f3575b56e81ae27d Mon Sep 17 00:00:00 2001 From: ediblerope Date: Sat, 11 Apr 2026 20:00:30 +0100 Subject: [PATCH] Fix V Rising container CRLF issue by stripping carriage returns on start Co-Authored-By: Claude Opus 4.6 --- services/game-servers.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/game-servers.nix b/services/game-servers.nix index 1759773..4e3d3f9 100644 --- a/services/game-servers.nix +++ b/services/game-servers.nix @@ -14,6 +14,8 @@ backend = "docker"; containers.v-rising = { image = "trueosiris/vrising:latest"; + entrypoint = "/bin/bash"; + cmd = [ "-c" "sed -i 's/\\r$//' /start.sh && /start.sh" ]; volumes = [ "/var/lib/v-rising/server:/mnt/vrising/server"