From c273f84da277fdf95ba14df6407cfe22c23a68f7 Mon Sep 17 00:00:00 2001 From: lilkidsuave <66171643+lilkidsuave@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:24:24 -0500 Subject: [PATCH] Update cosmos-compose.json --- servapps/PalworldServer/cosmos-compose.json | 32 ++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/servapps/PalworldServer/cosmos-compose.json b/servapps/PalworldServer/cosmos-compose.json index e8fb9ba..dc20c10 100644 --- a/servapps/PalworldServer/cosmos-compose.json +++ b/servapps/PalworldServer/cosmos-compose.json @@ -22,15 +22,15 @@ { "name": "community", "label": "Public or Private? (true,false)", - "initialValue": "false", + "initialValue": false, "type": "select", "options": [ [ - "true", + true, "Yes" ], [ - "false", + false, "No" ] ] @@ -68,19 +68,19 @@ "8211:8211/udp", "27015:27015/udp" ], - "environment": { - "PORT": 8211, - "PLAYERS": "{Context.players}", - "SERVER_PASSWORD": "{Context.password}", - "MULTITHREADING": true, - "RCON_ENABLED": true, - "RCON_PORT": 25575, - "TZ": "Auto", - "ADMIN_PASSWORD": "{Context.adminpassword}", - "COMMUNITY": "{Context.community}", - "SERVER_NAME": "{Context.name}", - "SERVER_DESCRIPTION": "{Context.description}" - }, + "environment": [ + "PORT=8211", + "PLAYERS={Context.players}", + "SERVER_PASSWORD={Context.password}", + "MULTITHREADING=true", + "RCON_ENABLED=true", + "RCON_PORT=25575", + "TZ=Auto", + "ADMIN_PASSWORD={Context.adminpassword}", + "COMMUNITY={Context.community}", + "SERVER_NAME={Context.name}", + "SERVER_DESCRIPTION={Context.description}" + ], "volumes": [ { "type": "volume",