You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,36 @@ Type `auth login device` in the container terminal and follow the instructions t
45
45
46
46
I recommend running `auth persistence Encrypted` within the container to ensure that your authentication tokens are saved securely and persist across container restarts. Make sure to reauthenticate after running this command to store the tokens.
47
47
48
+
## Configuration
49
+
50
+
The following environment variables can be used to configure the Hytale server:
|`HYTALE_MINIMUM_MEMORY`|`128M`| Minimum memory allocation for the JVM |
55
+
|`HYTALE_MAXIMUM_MEMORY`| 90% of system memory | Maximum memory allocation for the JVM |
56
+
|`HYTALE_SERVER_PORT`|`5520`| Port the server binds to |
57
+
|`HYTALE_PARAMETERS`|_(see below)_| Override all JVM/server parameters |
58
+
|`HYTALE_ADDITIONAL_PARAMETERS`|_(none)_| Append additional parameters to the default |
59
+
60
+
### Example with Custom Memory Settings
61
+
62
+
```yaml
63
+
services:
64
+
hytale:
65
+
image: ghcr.io/zuedev/hytale-server-docker
66
+
ports:
67
+
- "5520:5520/udp"
68
+
volumes:
69
+
- ./data:/app/Hytale
70
+
environment:
71
+
- HYTALE_MINIMUM_MEMORY=512M
72
+
- HYTALE_MAXIMUM_MEMORY=4096M
73
+
restart: unless-stopped
74
+
stdin_open: true
75
+
tty: true
76
+
```
77
+
48
78
## Legal
49
79
50
80
This project is not affiliated with or endorsed by Hypixel Studios. Hytale and all related trademarks are the property of their respective owners. This project is intended for educational and personal use only.
0 commit comments