fix unzip + add storage to readme
This commit is contained in:
		
							parent
							
								
									706e84fc9d
								
							
						
					
					
						commit
						0908ad2fbb
					
				| @ -12,6 +12,10 @@ Because the server files are not in a dedicated Steam app id this egg installs t | ||||
| 
 | ||||
| The server is running with wine. So the console output can be a litte strange but it does work. | ||||
| 
 | ||||
| ## Storage | ||||
| 
 | ||||
| This server will at least needs 12GB of storage allocated to be able to start | ||||
| 
 | ||||
| ## Server Ports | ||||
| 
 | ||||
| Portal Knights requires 1 port | ||||
|  | ||||
| @ -4,7 +4,7 @@ | ||||
|         "version": "PTDL_v2", | ||||
|         "update_url": null | ||||
|     }, | ||||
|     "exported_at": "2023-03-05T15:53:22+01:00", | ||||
|     "exported_at": "2023-03-05T17:26:48+01:00", | ||||
|     "name": "Portal Knights", | ||||
|     "author": "josdekurk@gmail.com", | ||||
|     "description": "The world of Elysia needs YOU! Join this cooperative, 3D sandbox action RPG to level up your character, craft epic weapons, conquer enemies in real-time, and build almost anything! Craft your adventure. Forge your hero. Become the ultimate Portal Knight!", | ||||
| @ -17,14 +17,14 @@ | ||||
|     "file_denylist": [], | ||||
|     "startup": "cd \/home\/container\/dedicated_server; xvfb-run --auto-servernum wine pk_dedicated_server.exe -config server_config.json -log server.log", | ||||
|     "config": { | ||||
|         "files": "{\r\n    \"dedicated_server\/server_config.json\": {\r\n        \"parser\": \"json\",\r\n        \"find\": {\r\n            \"basicServerData.name\":\"{{server.build.env.SERVER_NAME}}\",\r\n            \"basicServerData.ipv4\":\"0.0.0.0\",\r\n            \"basicServerData.port\":\"{{server.build.default.port}}\",\r\n            \"basicServerData.saveFolderPath\":\".\/savedata\",\r\n            \"admins.credentials.password\":\"{{server.build.env.ADMIN_PASS}}\",\r\n            \"users.credentials.password\":\"{{server.build.env.USER_PASS}}\",\r\n            \"guests.credentials.password\":\"{{server.build.env.GUEST_PASS}}\",\r\n            \"gameplayMode\":\"{{server.build.env.GAMEMODE}}\",\r\n            \"universeSize\":\"{{server.build.env.UNIVERSE_SIZE}}\",\r\n            \"hideConsoleWindow\":\"true\"\r\n        }\r\n    }\r\n}", | ||||
|         "startup": "{\r\n    \"done\": \"Listening on\"\r\n}", | ||||
|         "files": "{\r\n    \"dedicated_server\/server_config.json\": {\r\n        \"parser\": \"json\",\r\n        \"find\": {\r\n            \"basicServerData.name\": \"{{server.build.env.SERVER_NAME}}\",\r\n            \"basicServerData.ipv4\": \"0.0.0.0\",\r\n            \"basicServerData.port\": \"{{server.build.default.port}}\",\r\n            \"basicServerData.saveFolderPath\": \".\/savedata\",\r\n            \"admins.credentials.password\": \"{{server.build.env.ADMIN_PASS}}\",\r\n            \"users.credentials.password\": \"{{server.build.env.USER_PASS}}\",\r\n            \"guests.credentials.password\": \"{{server.build.env.GUEST_PASS}}\",\r\n            \"gameplayMode\": \"{{server.build.env.GAMEMODE}}\",\r\n            \"universeSize\": \"{{server.build.env.UNIVERSE_SIZE}}\",\r\n            \"hideConsoleWindow\": \"true\"\r\n        }\r\n    }\r\n}", | ||||
|         "startup": "{\r\n  \"done\":[\r\n    \"Listening on\",\r\n    \"ReadyToServe\",\r\n    \"has started\"\r\n  ]\r\n}", | ||||
|         "logs": "{}", | ||||
|         "stop": "^^C" | ||||
|     }, | ||||
|     "scripts": { | ||||
|         "installation": { | ||||
|             "script": "#!\/bin\/bash\r\n# steamcmd Base Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n# Image to install with is 'ghcr.io\/parkervcp\/installers:debian'\r\n\r\n\r\n## just in case someone removed the defaults.\r\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\r\n    echo -e \"steam user is not set.\\n\"\r\n    echo -e \"Using anonymous user.\\n\"\r\n    STEAM_USER=anonymous\r\n    STEAM_PASS=\"\"\r\n    STEAM_AUTH=\"\"\r\nelse\r\n    echo -e \"user set to ${STEAM_USER}\"\r\nfi\r\n\r\n## download and install steamcmd\r\ncd \/tmp\r\nmkdir -p \/mnt\/server\/steamcmd\r\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\r\nmkdir -p \/mnt\/server\/steamapps # Fix steamcmd disk write error when this folder is missing\r\ncd \/mnt\/server\/steamcmd\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root \/mnt\r\nexport HOME=\/mnt\/server\r\n\r\n## install game using steamcmd\r\n.\/steamcmd.sh +force_install_dir \/mnt\/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} validate +quit\r\n\r\n## set up 32 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so\r\n\r\n## set up 64 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk64\r\ncp -v linux64\/steamclient.so ..\/.steam\/sdk64\/steamclient.so\r\n\r\n## add below your custom commands if needed\r\ncd \/mnt\/server\r\nunzip -o dedicated_server.zip\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"", | ||||
|             "script": "#!\/bin\/bash\r\n# steamcmd Base Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n# Image to install with is 'ghcr.io\/parkervcp\/installers:debian'\r\n\r\n\r\n## just in case someone removed the defaults.\r\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\r\n    echo -e \"steam user is not set.\\n\"\r\n    echo -e \"Using anonymous user.\\n\"\r\n    STEAM_USER=anonymous\r\n    STEAM_PASS=\"\"\r\n    STEAM_AUTH=\"\"\r\nelse\r\n    echo -e \"user set to ${STEAM_USER}\"\r\nfi\r\n\r\n## download and install steamcmd\r\ncd \/tmp\r\nmkdir -p \/mnt\/server\/steamcmd\r\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\r\nmkdir -p \/mnt\/server\/steamapps # Fix steamcmd disk write error when this folder is missing\r\ncd \/mnt\/server\/steamcmd\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root \/mnt\r\nexport HOME=\/mnt\/server\r\n\r\n## install game using steamcmd\r\n.\/steamcmd.sh +force_install_dir \/mnt\/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} validate +quit\r\n\r\n## set up 32 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so\r\n\r\n## set up 64 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk64\r\ncp -v linux64\/steamclient.so ..\/.steam\/sdk64\/steamclient.so\r\n\r\n## add below your custom commands if needed\r\ndir=\/mnt\/server\/dedicated_server\r\nif [[ ! -e $dir ]]; then\r\n    mkdir -p $dir\r\nfi\r\n\r\ncd \/mnt\/server\/dedicated_server\r\nunzip -o ..\/dedicated_server.zip\r\ncurl -sSL -o server_config.json https:\/\/pteropaste.com\/f8p6yx0yj07d\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"", | ||||
|             "container": "ghcr.io\/parkervcp\/installers:debian", | ||||
|             "entrypoint": "bash" | ||||
|         } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user