docker: add DI_PREPARTY and modding docs

This commit is contained in:
ed
2026-02-14 19:26:21 +00:00
parent cd927e7837
commit bf01ca4891
8 changed files with 107 additions and 9 deletions

View File

@@ -120,6 +120,7 @@ add the following three config entries into the `[global]` section of your `copy
* `ftp: 3921` to enable the service, listening for connections on port 3921
* `ftp-nat: 127.0.0.1` but replace `127.0.0.1` with the actual external IP of your server; the clients will only be able to connect to this IP, even if the server has multiple IPs
* do not add `ftp-nat` if you are running the container with host networking
* `ftp-pr: 12000-12099` to restrict the [passive-mode](http://slacksite.com/other/ftp.html#passive) port selection range; this allows up to 100 simultaneous file transfers
@@ -129,3 +130,8 @@ then finally update your docker config so that the port-range you specified (120
# build the images yourself
basically `./make.sh hclean pull img push` but see [devnotes.md](./devnotes.md)
## adding new packages to the image
in case you wish to make a small modification to the official image, for example [add a python package you need](https://github.com/9001/copyparty/issues/479#issuecomment-3152026483), then you don't *really* need to build the whole image from scratch -- see [modifying an image](./devnotes.md#modifying-an-image) in devnotes