Skip to content

Commit 8111d0f

Browse files
authored
[New App] Crafty Controller (#260)
Created and tested Crafty Controller app for CasaOS as per requested in #64 Crafty Controller is an open source Minecraft Server Control Panel made with the objective of making the management of Minecraft Servers easy. Thoroughly tested in production and confirmed working. ![image](https://github.com/IceWhaleTech/CasaOS-AppStore/assets/129703415/2ab0a644-1ff4-43d9-93c8-7fc55204ecc4)
1 parent 0b42890 commit 8111d0f

11 files changed

+422
-0
lines changed

Apps/Crafty/appfile.json

+226
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
{
2+
"version": "1.0",
3+
"title": "Crafty",
4+
"name": "crafty",
5+
"icon": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/icon.png",
6+
"tagline": "Take control of your Minecraft servers.",
7+
"overview": "Crafty is an open source Minecraft control panel built using Tornado and AdminLTE, featuring server scheduling, a interactive console and the ability to run almost any type of Minecraft server",
8+
"thumbnail": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/thumbnail.jpg",
9+
"screenshots": [
10+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-1.png",
11+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-2.png",
12+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-3.png",
13+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-4.png",
14+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-5.png",
15+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-6.png",
16+
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Crafty/screenshot-7.png"
17+
],
18+
"category": [
19+
"Games"
20+
],
21+
"developer": {
22+
"name": "Crafty Team",
23+
"website": "https://gitlab.com/crafty-controller/crafty-team",
24+
"donate_text": "",
25+
"donate_link": ""
26+
},
27+
"adaptor": {
28+
"name": "Chàra Rose",
29+
"website": "https://chara.cloud",
30+
"donate_text": "",
31+
"donate_link": ""
32+
},
33+
"support": "https://discord.gg/knqAbbBbeX",
34+
"website": "https://www.casaos.io",
35+
"container": {
36+
"image": "arcadiatechnology/crafty-4",
37+
"shell": "bash",
38+
"privileged": false,
39+
"network_model": "bridge",
40+
"web_ui": {
41+
"http": "8110",
42+
"path": "/panel"
43+
},
44+
"envs": [
45+
{
46+
"key": "TZ",
47+
"value": "Etc/UTC",
48+
"configurable": "yes",
49+
"description": "Timezone"
50+
}
51+
],
52+
"ports": [
53+
{
54+
"container": "8000",
55+
"host": "8110",
56+
"type": "tcp",
57+
"allocation": "preferred",
58+
"configurable": "advanced",
59+
"description": "WebUI HTTP Port"
60+
},
61+
{
62+
"container": "19132",
63+
"host": "19132",
64+
"type": "udp",
65+
"allocation": "required",
66+
"configurable": "no",
67+
"description": "Minecraft Bedrock listening Port (UDP)"
68+
},
69+
{
70+
"container": "25565",
71+
"host": "25565",
72+
"type": "tcp",
73+
"allocation": "required",
74+
"configurable": "no",
75+
"description": "Minecraft listening Port (TCP)"
76+
},
77+
{
78+
"container": "25566",
79+
"host": "25566",
80+
"type": "tcp",
81+
"allocation": "required",
82+
"configurable": "no",
83+
"description": "Minecraft listening Port (TCP)"
84+
},
85+
{
86+
"container": "25567",
87+
"host": "25567",
88+
"type": "tcp",
89+
"allocation": "required",
90+
"configurable": "no",
91+
"description": "Minecraft listening Port (TCP)"
92+
},
93+
{
94+
"container": "25568",
95+
"host": "25568",
96+
"type": "tcp",
97+
"allocation": "required",
98+
"configurable": "no",
99+
"description": "Minecraft listening Port (TCP)"
100+
},
101+
{
102+
"container": "25569",
103+
"host": "25569",
104+
"type": "tcp",
105+
"allocation": "required",
106+
"configurable": "no",
107+
"description": "Minecraft listening Port (TCP)"
108+
},
109+
{
110+
"container": "25570",
111+
"host": "25570",
112+
"type": "tcp",
113+
"allocation": "required",
114+
"configurable": "no",
115+
"description": "Minecraft listening Port (TCP)"
116+
},
117+
{
118+
"container": "25565",
119+
"host": "25565",
120+
"type": "udp",
121+
"allocation": "required",
122+
"configurable": "no",
123+
"description": "Minecraft listening Port (UDP)"
124+
},
125+
{
126+
"container": "25566",
127+
"host": "25566",
128+
"type": "udp",
129+
"allocation": "required",
130+
"configurable": "no",
131+
"description": "Minecraft listening Port (UDP)"
132+
},
133+
{
134+
"container": "25567",
135+
"host": "25567",
136+
"type": "udp",
137+
"allocation": "required",
138+
"configurable": "no",
139+
"description": "Minecraft listening Port (UDP)"
140+
},
141+
{
142+
"container": "25568",
143+
"host": "25568",
144+
"type": "udp",
145+
"allocation": "required",
146+
"configurable": "no",
147+
"description": "Minecraft listening Port (UDP)"
148+
},
149+
{
150+
"container": "25569",
151+
"host": "25569",
152+
"type": "udp",
153+
"allocation": "required",
154+
"configurable": "no",
155+
"description": "Minecraft listening Port (UDP)"
156+
},
157+
{
158+
"container": "25570",
159+
"host": "25570",
160+
"type": "udp",
161+
"allocation": "required",
162+
"configurable": "no",
163+
"description": "Minecraft listening Port (UDP)"
164+
}
165+
],
166+
"volumes": [
167+
{
168+
"container": "/crafty/backups",
169+
"host": "/DATA/AppData/crafty/backups",
170+
"mode": "rw",
171+
"allocation": "automatic",
172+
"configurable": "no",
173+
"description": "Crafty backups directory."
174+
},
175+
{
176+
"container": "/crafty/logs",
177+
"host": "/DATA/AppData/crafty/logs",
178+
"mode": "rw",
179+
"allocation": "automatic",
180+
"configurable": "no",
181+
"description": "Crafty logs directory."
182+
},
183+
{
184+
"container": "/crafty/servers",
185+
"host": "/DATA/AppData/crafty/servers",
186+
"mode": "rw",
187+
"allocation": "automatic",
188+
"configurable": "no",
189+
"description": "Crafty servers directory."
190+
},
191+
{
192+
"container": "/crafty/app/config",
193+
"host": "/DATA/AppData/crafty/config",
194+
"mode": "rw",
195+
"allocation": "automatic",
196+
"configurable": "no",
197+
"description": "Crafty config directory."
198+
},
199+
{
200+
"container": "/crafty/import",
201+
"host": "/DATA/AppData/crafty/import",
202+
"mode": "rw",
203+
"allocation": "automatic",
204+
"configurable": "no",
205+
"description": "Crafty import directory."
206+
}
207+
],
208+
"devices": [],
209+
"constraints": {
210+
"min_memory": 1024,
211+
"min_storage": 1024
212+
},
213+
"restart_policy": "unless-stopped",
214+
"sysctls": [],
215+
"cap_add": [],
216+
"labels": []
217+
},
218+
"abilities": {
219+
"notification": false,
220+
"widgets": false,
221+
"authentication": false,
222+
"search": false,
223+
"upnp": false
224+
},
225+
"tips": {}
226+
}

0 commit comments

Comments
 (0)