Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Palworld server #125

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
98 changes: 98 additions & 0 deletions servapps/Palworld-Server/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"cosmos-installer": {
"form": [
{
"name": "name",
"label": "What do you want to call this server?",
"initialValue": "Palworld-Server",
"type": "text"
},
{
"name": "password",
"label": "What Password do you want for the server?",
"initialValue": "Password",
"type": "password"
},
{
"name": "adminpassword",
"label": "What Password do you want for the admin?",
"initialValue": "Password",
"type": "password"
},
{
"name": "community",
lilkidsuave marked this conversation as resolved.
Show resolved Hide resolved
"label": "Public Server? (true,false)",
"initialValue": false,
"type": "checkbox"
},
{
"name": "players",
"label": "How many people can join this server? (Max 32)",
"initialValue": 16,
"type": "text"
},
{
"name": "description",
"label": "How would you describe the server?",
"initialValue": "MOHAWK DINOSAUR",
"type": "text"
},

{
"name": "gamePort",
"label": "You must open a udp game port for this service",
"initialValue": 27015,
"type": "text"
},

{
"name": "communityPort",
"label": "You must open a udp community port toshoe up in the server tab",
"initialValue": 8211,
"type": "text"
},

{
"type": "warning",
"label": "As it is impossible to include all the configuration options in the installer, you can check the docs for more information on how toconfigure your server https://github.com/thijsvanloef/palworld-server-docker"
}
]
},
"services": {
"{ServiceName}": {
"image": "thijsvanloef/palworld-server-docker:latest",
"restart": "unless-stopped",
"container_name": "{ServiceName}",
"hostname": "{ServiceName}",
"stop_grace_period": "30s",
"ports": [
"{Context.gamePort}:8211/udp",
"{Context.communityPort}: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}"
],
"volumes": [
{
"type": "volume",
"source": "{ServiceName}-data",
"target": "/palworld/"
}
],
"labels": {
"cosmos-auto-update": true,
"cosmos-icon": "https://lilkidsuave.github.io/asteroidsinthecosmos/Palworld-Server/icon.png"
}
}
}
}
9 changes: 9 additions & 0 deletions servapps/Palworld-Server/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Palworld Dedicated Server",
"description": "Docker container for hosting Palworld dedicated servers.",
lilkidsuave marked this conversation as resolved.
Show resolved Hide resolved
"longDescription": "The Palworld Server is a versatile container designed to effortlessly host Palworld dedicated servers. Palworld, a vibrant multiplayer game, allows players to immerse themselves in a world filled with adorable creatures called 'Pals'. This Docker container streamlines the process of setting up and managing dedicated servers, providing a seamless experience for hosting communities, gaming groups, and enthusiasts alike.",
"repository": "https://github.com/thijsvanloef/palworld-server-docker",
"image": "https://hub.docker.com/r/thijsvanloef/palworld-server-docker",
"tags": ["Gaming"],
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Palworld-Server/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Palworld-Server/screenshots/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Palworld-Server/screenshots/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.