binhex-crafty-4

binhex-crafty-4

Docker app from Binhex's Repository

Overview

Crafty Controller is a free and open-source Minecraft launcher and manager that allows users to start and administer Minecraft servers from a user-friendly interface. The interface is run as a self-hosted web server that is accessible to devices on the local network by default and can be port forwarded to provide external access outside of your local network. Crafty is designed to be easy to install and use, requiring only a bit of technical knowledge and a desire to learn to get started. Crafty Controller is still actively being developed by Arcadia Technology and we are continually making major improvements to the software.

Application

Crafty Controller v4

Description

Crafty Controller is a free and open-source Minecraft launcher and manager that allows users to start and administer Minecraft servers from a user-friendly interface. The interface is run as a self-hosted web server that is accessible to devices on the local network by default and can be port forwarded to provide external access outside of your local network. Crafty is designed to be easy to install and use, requiring only a bit of technical knowledge and a desire to learn to get started. Crafty Controller is still actively being developed by Arcadia Technology and we are continually making major improvements to the software.

Crafty Controller is a feature rich panel that allows you to create and run servers, manage players, run commands, change server settings, view and edit server files, and make backups. With the help of Crafty Controller managing a large number of Minecraft servers on separate versions is easy and intuitive to do.

Build notes

Latest commit to GitHub branch 'master'.

Usage

docker run -d \
    -p <host port for crafty web ui http>:8000 \
    -p <host port for crafty web ui https>:8443 \
    -p <host tcp port range for minecraft bedrock servers>:19132-19232/tcp \
    -p <host udp port range for minecraft bedrock servers>:19132-19232/udp \
    -p <host tcp port range for minecraft java servers>:25565-25575/tcp \
    --name=<container name> \
    -v <path for config files>:/config \
    -v /etc/localtime:/etc/localtime:ro \
    -e TZ=Etc/<region> \
    -e JAVA_VERSION=<8|11|17|21|latest> \
    -e HEALTHCHECK_COMMAND=<command> \
    -e HEALTHCHECK_ACTION=<action> \
    -e HEALTHCHECK_HOSTNAME=<hostname> \
    -e UMASK=<umask for created files> \
    -e PUID=<uid for user> \
    -e PGID=<gid for user> \
    binhex/arch-crafty-4

Please replace all user variables in the above command defined by <> with the correct values.

Access Crafty Web UI

https://<host ip>:8443 Note HTTP running on port 8000 is legacy and will redirect to HTTPS on port 8443

Web UI Credentials

Username: admin

Password: This is now dynamically generated, if not set then the password will be stored in /config/crafty/app/config/default-creds.txt, for reference the previously hardcoded password was crafty.

Example

docker run -d \
    -p 8000:8000 \
    -p 8443:8443 \
    -p 19132-19232:19132-19232/tcp \
    -p 19132-19232:19132-19232/udp \
    -p 25565-25575:25565-25575/tcp \
    --name=crafty \
    -v /apps/docker/crafty:/config \
    -v /etc/localtime:/etc/localtime:ro \
    -e TZ=Etc/UTC \
    -e JAVA_VERSION=latest \
    -e UMASK=000 \
    -e PUID=99 \
    -e PGID=100 \
    binhex/arch-crafty-4

Notes

Crafty v4 does not support running as user root group root, so please ensure PUID and PGID are NOT set to 0.

User ID (PUID) and Group ID (PGID) can be found by issuing the following command for the user you want to run the container as:-

id <username>

If you appreciate my work, then please consider buying me a beer :D

PayPal donation

Documentation | Support forum

Install binhex-crafty-4 on Unraid in a few clicks.

Find binhex-crafty-4 in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for binhex-crafty-4 Review the template variables and paths Click Install

Categories

Download Statistics

71,992
Total Downloads
2,603
This Month
1,750
Avg / Month

Total Downloads Over Time

Loading chart...

Related apps

Explore more like this

Explore all

Details

Repository
ghcr.io/binhex/arch-crafty-4
Last Updated2026-06-16
First Seen2022-06-16

Runtime arguments

Web UI
http://[IP]:[PORT:8443]
Network
bridge
Shell
bash
Privileged
false
Extra Params
--restart=unless-stopped

Template configuration

Port: Web Interface (HTTP)Porttcp

This is the HTTP Web UI port for for the application.

Target
8000
Default
8000
Port: Web Interface (HTTPS)Porttcp

This is the HTTPS Web UI port for for the application.

Target
8443
Default
8443
Port: Minecraft Bedrock servers (TCP)Porttcp

This is the TCP port range for Minecrasft Bedrock servers.

Target
19132-19232
Default
19132-19232
Port: Minecraft Bedrock servers (UDP)Portudp

This is the UDP port range for Minecrasft Bedrock servers.

Target
19132-19232
Default
19132-19232
Port: Minecraft Java servers (TCP)Porttcp

This is the TCP port range for Minecraft Java servers.

Target
25565-25575
Default
25565-25575
Path: /configPathrw

This is the container path to your configuration files, e.g. databases, configuration files, logs etc.

Target
/config
Default
/mnt/user/appdata/APPNAME
Variable: TZVariable

Specify the timezone.

Target
TZ
Default
Etc/UTC
Variable: JAVA_VERSIONVariable

Specify the version of Java.

Target
JAVA_VERSION
Default
latest|21|17|11|8
Variable: ENABLE_HEALTHCHECKVariable

Enable or disable healthchecks.

Target
ENABLE_HEALTHCHECK
Default
yes|no
Variable: HEALTHCHECK_COMMANDVariable

The command or script to execute, if not specified then the script healthcheck.sh will be used (process, dns and https checking).

Target
HEALTHCHECK_COMMAND
Variable: HEALTHCHECK_ACTIONVariable

The action to execute if the healthcheck command returns a non zero exit code, if not specified the action will be 'exit 1', if you want the container to exit on failure then set the action to 'kill 1'.

Target
HEALTHCHECK_ACTION
Variable: HEALTHCHECK_HOSTNAMEVariable

The hostname used when performing HTTPS and DNS healthchecking.

Target
HEALTHCHECK_HOSTNAME
Default
google.com
Variable: PUIDVariable

User ID for the running container

Target
PUID
Default
99
Variable: PGIDVariable

Group ID for the running container

Target
PGID
Default
100
Variable: UMASKVariable

UMASK for the running container

Target
UMASK
Default
000