Skip to content

Commit

Permalink
Update cosmos-compose.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lilkidsuave authored Feb 13, 2024
1 parent 86639de commit c273f84
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions servapps/PalworldServer/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
]
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit c273f84

Please sign in to comment.