Auto CurseForge¶
To manage a CurseForge modpack automatically with upgrade support, pinned or latest version tracking, set MODPACK_PLATFORM
, MOD_PLATFORM
or TYPE
to "AUTO_CURSEFORGE". The appropriate mod loader (Forge / Fabric) version will be automatically installed as declared by the modpack. This mode will also take care of cleaning up unused files installed by previous versions of the modpack, but world data is never auto-removed.
API Key¶
CurseForge API key usage
A CurseForge API key is required to use this feature. Go to their developer console, generate an API key, and set the environment variable CF_API_KEY
.
When entering your API Key in a docker compose file you will need to escape any $
character with a second $
. Refer to this compose file reference section for more information.
Example if your key is $11$22$33aaaaaaaaaaaaaaaaaaaaaaaaaa
:
docker run
you will need to make sure to use single quotes:
To avoid exposing the API key, it is highly recommended to use a .env
file, which is loaded automatically by docker compose. $
's in the value still need to escaped with a second $
and the variable needs to be referenced from the compose file, such as:
To use the equivalent with docker run
you need to specify the .env
file explicitly:
Note
Be sure to use the appropriate image tag for the Java version compatible with the modpack.
Most modpacks require a good amount of memory, so it best to set MEMORY
to at least "4G" since the default is only 1 GB.
Usage¶
Use one of the following to specify the modpack to install:
Pass a page URL to the modpack or a specific file with CF_PAGE_URL
such as the modpack page "https://www.curseforge.com/minecraft/modpacks/all-the-mods-8" or a specific file "https://www.curseforge.com/minecraft/modpacks/all-the-mods-8/files/4248390". For example:
Instead of a URL, the modpack slug can be provided as CF_SLUG
. The slug is the short identifier visible in the URL after "/modpacks/", such as
For example:
Pinning modpack and mod loader versions¶
The latest modpack file and its associated mod loader will be located and installed by default on startup (including automatic upgrading of both on subsequent startups, if a later version is found on CurseForge). If a specific version is desired instead, you can use one of the following options. With any of these options do not select a server file -- they lack the required manifest and defeat the ability to consistently automate startup.
- Use
CF_PAGE_URL
, but include the full URL to a specific file - Set
CF_FILE_ID
to the numerical file ID - Specify a substring to match the desired filename with
CF_FILENAME_MATCHER
The following shows where to get the URL to the specific file and also shows where the file ID is located:
The following examples all refer to version 1.0.7 of ATM8:
Pinning modpack version also pins the mod loader (to the version specified by the modpack). Mod loader version cannot be pinned independently of the modpack.
Manual Downloads¶
For mod, modpacks, and world files that are not allowed for automated download, the container path /downloads
can be attached and matching files will be retrieved from there. The subdirectories mods
, modpacks
, and worlds
will also be checked accordingly. To change the source location of downloaded files, set CF_DOWNLOADS_REPO
to an existing container path. To disable this feature, set CF_DOWNLOADS_REPO
to an empty string.
Download using a browser
It's important to use a browser to download the files listed for manual download. If your Docker host is running without a graphical interface, then you can use scp
or similar to transfer the files to it.
Example
Assuming Docker compose is being used:
- Create a directory next to the
docker-compose.yml
file. The name doesn't matter, but "downloads" is the common convention - From the "Mods Need Download" output, visit the download page of each, click on the file download and save that file into the directory created in the previous step
- Add a host directory mount to the volumes section where the container path must be
/downloads
. The snippet below shows how that will look - Re-run
docker compose up -d
to apply the changes
Unpublished Modpacks¶
If you wish to use an unpublished modpack zip, set the container path to the file in CF_MODPACK_ZIP
. Similarly, the container path to a modpack manifest JSON can be passed to CF_MODPACK_MANIFEST
. In either case, the modpack slug or page URL must still be provided.
Example
services:
mc:
image: itzg/minecraft-server
environment:
EULA: true
MODPACK_PLATFORM: AUTO_CURSEFORGE
# allocate from https://console.curseforge.com/ and set in .env file
CF_API_KEY: ${CF_API_KEY}
CF_MODPACK_MANIFEST: /manifests/manifest.json
CF_SLUG: "custom"
volumes:
- ./manifests:/manifests:ro
where an exported manifest file should look like:
{
"minecraft": {
"version": "1.20.4",
"modLoaders": [
{
"id": "fabric-0.15.3",
"primary": true
}
]
},
"manifestType": "minecraftModpack",
"manifestVersion": 1,
"name": "Custom",
"author": "",
"files": [
{
"projectID": 351725,
"fileID": 4973035,
"required": true
},
{
"projectID": 306612,
"fileID": 5010374,
"required": true
}
],
"overrides": "overrides"
}
Exclude client mods¶
Quite often there are mods that need to be excluded, such as ones that did not properly declare as a client mod via the file's game versions. Similarly, there are some mods that are incorrectly tagged as client only. The following describes two options to exclude/include mods:
Mods can be excluded by passing a comma or space delimited list of project slugs or IDs via CF_EXCLUDE_MODS
. Similarly, there are some mods that are incorrectly tagged as client only. For those, pass the project slugs or IDs via CF_FORCE_INCLUDE_MODS
. These lists will be combined with the content of the exclude/include file, if given.
Note
CF_FORCE_INCLUDE_MODS
will not download additional mods.
For additional mods, refer to the CURSEFORGE_FILES
variable.
A mod's project ID can be obtained from the right hand side of the project page:
For more complex scenarios, global and per modpack exclusions can be declared in a container-accessible JSON file and referenced with CF_EXCLUDE_INCLUDE_FILE
. By default, the file bundled with the image will be used, but can be disabled by setting this to an empty string. The schema of this file is documented here.
If needing to iterate on the options above, set CF_FORCE_SYNCHRONIZE
to "true" to ensure the exclude/includes are re-evaluated.
Important
These options are provided to empower you to get your server up and running quickly. Please help out by reporting an issue with the respective mod project. Ideally mod developers should use correct registrations for one-sided client mods. Understandably, those code changes may be non-trivial, so mod authors can also add "Client" to the game versions when publishing.
Excluding Overrides Files¶
Modpack zip files typically include an overrides
subdirectory that may contain config files, world data, and extra mod files. All of those files will be extracted into the /data
path of the container. If any of those files, such as incompatible mods, need to be excluded from extraction, then the CF_OVERRIDES_EXCLUSIONS
variable can be set with a comma or newline delimited list of ant-style paths (see below) to exclude, relative to the overrides (or /data
) directory.
Ant-style paths¶
Ant-style paths can include the following globbing/wildcard symbols:
Symbol | Behavior |
---|---|
* |
Matches zero, one, or many characters except a slash |
** |
Matches zero, one, or many characters including slashes |
? |
Matches one character |
Example
The following compose environment
entries show how to exclude Iris and Sodium mods from the overrides
or using newline delimiter, which improves maintainability
World/Level Data¶
Some modpacks come with world/save data via a worlds file and/or the overrides provided with the modpack. Either approach can be selected to set the LEVEL
to the resulting saves directory by setting CF_SET_LEVEL_FROM
to either:
WORLD_FILE
OVERRIDES
Ignore missing files¶
Some mods use temporary files from the modpack and delete them when finished. Others will patch themselves and "disable" the original mod jar, such as gregtech. In order to avoid the installer from detecting the absent file(s) and re-installing, those files can be ignored by passing a comma or newline delimited list to CF_IGNORE_MISSING_FILES
.
Hint
A warning log will indicate what files were found to be missing from the previous installation run, such as
Extra options¶
Other configuration available:
CF_PARALLEL_DOWNLOADS
(default is 4): specify how many parallel mod downloads to performCF_OVERRIDES_SKIP_EXISTING
(default is false): if set, files in the overrides that already exist in the data directory are skipped. NOTE world data is always skipped, if present.CF_FORCE_REINSTALL_MODLOADER
(default is false): this can be set totrue
to force the modpack's declared modloader, such as Forge, to be reinstalled. This is useful if some of the modloader's files become corrupted.