-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an Example of Setting Up GregTech: New Horizons (#3212)
- Loading branch information
1 parent
05cbbfc
commit 236ed74
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
services: | ||
mc: | ||
# make sure this java version matches with pack java version | ||
image: itzg/minecraft-server:java21 | ||
tty: true | ||
stdin_open: true | ||
ports: | ||
- "25565:25565" | ||
environment: | ||
EULA: "TRUE" | ||
TYPE: CUSTOM | ||
GENERIC_PACKS: GT_New_Horizons_2.7.1_Server_Java_17-21 | ||
GENERIC_PACKS_SUFFIX: .zip | ||
GENERIC_PACKS_PREFIX: https://downloads.gtnewhorizons.com/ServerPacks/ | ||
# if this isn't true, then the container tries to download the modpack every run | ||
: "true" | ||
# Make sure that this matches what is in your pack's startserver bash file | ||
CUSTOM_JAR_EXEC: "-Xms6G -Xmx6G -Dfml.readTimeout=180 @java9args.txt -jar lwjgl3ify-forgePatches.jar nogui" | ||
volumes: | ||
# attach the relative directory 'data' to the container's /data path | ||
- mc-data:/data | ||
volumes: | ||
mc-data: |