Skip to content

Commit ca2c15e

Browse files
authored
docs: add example for Auto CurseForge manual downloads (#2517)
1 parent a5ec64d commit ca2c15e

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

docs/types-and-platforms/mod-platforms/auto-curseforge.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,22 @@ The following examples all refer to version 1.0.7 of ATM8:
8787
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.
8888

8989
!!! note "Mods need download report"
90-
A file called `MODS_NEED_DOWNLOAD.txt` will be created in the `/data` directory that lists the mods that need to be manually downloaded and where to get them.
90+
91+
A file called `MODS_NEED_DOWNLOAD.txt` will be created in the `/data` directory that lists the mods that need to be manually downloaded and where to get them.
92+
93+
!!! example
94+
95+
Assuming Docker compose is being used:
96+
97+
1. Create a directory next to the `docker-compose.yml` file. The name doesn't matter, but "downloads" is the common convention
98+
2. 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
99+
3. Add a host directory mount to the volumes section where the container path **must be** `/downloads`. The snippet below shows how that will look
100+
4. Re-run `docker composwe up -d` to apply the changes
101+
102+
```yaml
103+
volumes:
104+
./downloads:/downloads
105+
```
91106

92107
## Unpublished Modpacks
93108

0 commit comments

Comments
 (0)