Skip to content

Commit bfe40d0

Browse files
Wout-BoatWout Bouckaert
andauthored
Bump Crafty to 4.4.4 (#600)
Changes: - Bump Crafty from 4.4.0 to 4.4.4 - Removed HTTP port. Port is no longer used by Crafty and redundant. - Updated panel path from `/panel` to `/`. `/panel` is not a real path in Crafty. This was added by the initial adapter. - Moved port in `appfile.json` to `8111`. Tested in local instance of Crafty, see screenshots. ![firefox_2024-10-23_08-34-42](https://github.com/user-attachments/assets/260bffc4-99ba-4111-a357-a9c02ad77ed4) ![firefox_2024-10-23_08-34-15](https://github.com/user-attachments/assets/20fe7137-1124-4d60-8c81-5c664c0ecc56) Co-authored-by: Wout Bouckaert <woutbouckaert@gmail.com>
1 parent 2ed08f6 commit bfe40d0

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

Apps/Crafty/appfile.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
"privileged": false,
3939
"network_model": "bridge",
4040
"web_ui": {
41-
"http": "8110",
42-
"path": "/panel"
41+
"http": "8111",
42+
"path": "/"
4343
},
4444
"envs": [
4545
{
@@ -50,14 +50,6 @@
5050
}
5151
],
5252
"ports": [
53-
{
54-
"container": "8000",
55-
"host": "8110",
56-
"type": "tcp",
57-
"allocation": "preferred",
58-
"configurable": "advanced",
59-
"description": "WebUI HTTP Port"
60-
},
6153
{
6254
"container": "19132",
6355
"host": "19132",

Apps/Crafty/docker-compose.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ version: "3"
55
services:
66
crafty:
77
container_name: crafty-container
8-
image: registry.gitlab.com/crafty-controller/crafty-4:4.4.0
8+
image: registry.gitlab.com/crafty-controller/crafty-4:4.4.4
99
restart: always
1010
environment:
1111
- TZ=Etc/UTC
1212
ports:
13-
- "8110:8000" # HTTP
1413
- "8111:8443" # HTTPS
1514
- "8112:8123" # DYNMAP
1615
- "19132:19132/udp" # BEDROCK
@@ -24,12 +23,6 @@ services:
2423

2524
x-casaos:
2625
ports:
27-
- container: "8000"
28-
description:
29-
en_us: WebUI HTTP Port
30-
zh_cn: WebUI HTTP端口
31-
protocol: tcp
32-
3326
- container: "19132"
3427
description:
3528
en_us: Minecraft Bedrock listening Port (UDP)

0 commit comments

Comments
 (0)