-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegg-endstone.json
46 lines (46 loc) · 2.45 KB
/
egg-endstone.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2024-12-23T16:47:50-05:00",
"name": "Endstone",
"author": "[email protected]",
"description": "Endstone is a powerful server software for Minecraft: Bedrock Edition. It provides a high-level plugin API that allows server owners to easily add features to the Bedrock Dedicated Servers.",
"features": [],
"docker_images": {
"Python 3.13": "ghcr.io\/parkervcp\/yolks:python_3.13",
"Python 3.12": "ghcr.io\/parkervcp\/yolks:python_3.12",
"Python 3.11": "ghcr.io\/parkervcp\/yolks:python_3.11",
"Python 3.10": "ghcr.io\/parkervcp\/yolks:python_3.10",
"Python 3.9": "ghcr.io\/parkervcp\/yolks:python_3.9"
},
"file_denylist": [],
"startup": "python -m pip install -U pip && pip install -U \"{{ENDSTONE_VERSION}}\" && python -m endstone -s . -y",
"config": {
"files": "{\r\n \"server.properties\": {\r\n \"parser\": \"properties\",\r\n \"find\": {\r\n \"server-port\": \"{{server.build.default.port}}\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"Server started.\"\r\n}",
"logs": "{}",
"stop": "stop"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\r\n# Endstone Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y curl\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\n\r\nif [ ! -f server.properties ]; then\r\n echo -e \"Downloading server.properties\"\r\n curl -o server.properties https:\/\/raw.githubusercontent.com\/EndstoneMC\/pterodactyl\/main\/server.properties\r\nfi\r\n\r\nexport HOME=\/mnt\/server\r\n\r\necho -e \"Installation complete\"\r\nexit 0",
"container": "python:3.12-slim-bookworm",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Endstone Version",
"description": "The version of endstone to download. \r\n\r\nLeave at \"endstone\" to always get the latest version, or use \"endstone==version\" to use a specific version.",
"env_variable": "ENDSTONE_VERSION",
"default_value": "endstone",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
}
]
}