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

Bump Crafty to 4.4.4, remove http port and fix path. #3

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions Apps/Crafty/appfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"privileged": false,
"network_model": "bridge",
"web_ui": {
"http": "8110",
"path": "/panel"
"http": "8111",
"path": "/"
},
"envs": [
{
Expand All @@ -50,14 +50,6 @@
}
],
"ports": [
{
"container": "8000",
"host": "8110",
"type": "tcp",
"allocation": "preferred",
"configurable": "advanced",
"description": "WebUI HTTP Port"
},
{
"container": "19132",
"host": "19132",
Expand Down
9 changes: 1 addition & 8 deletions Apps/Crafty/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ version: "3"
services:
crafty:
container_name: crafty-container
image: registry.gitlab.com/crafty-controller/crafty-4:4.4.0
image: registry.gitlab.com/crafty-controller/crafty-4:4.4.4
restart: always
environment:
- TZ=Etc/UTC
ports:
- "8110:8000" # HTTP
- "8111:8443" # HTTPS
- "8112:8123" # DYNMAP
- "19132:19132/udp" # BEDROCK
Expand All @@ -24,12 +23,6 @@ services:

x-casaos:
ports:
- container: "8000"
description:
en_us: WebUI HTTP Port
zh_cn: WebUI HTTP端口
protocol: tcp

- container: "19132"
description:
en_us: Minecraft Bedrock listening Port (UDP)
Expand Down