-
Couldn't load subscription status.
- Fork 9
Install
James58899 edited this page Oct 28, 2025
·
14 revisions
hath-rust can drop-in replacement for the official jar, just put the executable file in the same directory as the jar and execute it.
The gnu variants binary minimum requires glibc 2.35(Ubuntu 22.04).
When the environment does not meet the requirements, there is a musl variant that can be used.
If you want to run on a platform that is not pre-compiled, you can try to compile it yourself, but it is not guaranteed to work.
- Enter the directory of H@H
- Download binary from Release
- Make the file executable:
chmod +x <file> - (Recommend) Make hath-rust as a service and start it automatically when booting
docker run -p <PORT>:<PORT> \
-v <H@H directory>:/hath \
-w /hath \
--restart unless-stopped \
--stop-timeout 600 \
-d \
ghcr.io/james58899/hath-rust-
-pBind port to host -
-vBind volume to /hath in container -
-wSet the working directory for hath-rust, it should containcachedatalogdownloadtmpin the working directory -
--restart unless-stoppedAuto-restart -
--stop-timeout 600Wait 600s before force kill -
-dStarts container in background