diff --git a/CHANGELOG.md b/CHANGELOG.md index 6571a96..e139ba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ All user visible changes to this project will be documented in this file. This p +## [1.0.51-r28] · 2024-08-29 +[1.0.51-r28]: /../../tree/1.0.51-r28 + +[Diff](/../../compare/1.0.51-r27...1.0.51-r28) + +### Added + +- `PER_USER_LIMITS` support. ([#7]) + +[#7]: /../../pull/7 + + + + ## [1.0.51-r27] · 2024-07-26 [1.0.51-r27]: /../../tree/1.0.51-r27 diff --git a/Dockerfile b/Dockerfile index 7bfbf5f..93f0865 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.20 ARG pure_ftpd_ver=1.0.51 ARG s6_overlay_ver=3.2.0.0 -ARG build_rev=27 +ARG build_rev=28 # Build and install Pure-FTPd @@ -37,6 +37,7 @@ RUN apk update \ \ # Build Pure-FTPd from sources && ./configure --prefix=/usr \ + --with-peruserlimits \ --with-puredb \ --with-quotas \ --with-ratios \ diff --git a/README.md b/README.md index 9742b4b..bf59367 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Pure-FTPd Docker image ## Supported tags and respective `Dockerfile` links -- [`1.0.51-r27`, `1.0.51`, `1.0`, `1`, `latest`][201] +- [`1.0.51-r28`, `1.0.51`, `1.0`, `1`, `latest`][201] @@ -44,7 +44,7 @@ docker run -d -p 21:21 -p 30000-30009:30000-30009 instrumentisto/pure-ftpd ### Why so many ports opened? - + This is for `PASV` support, please see: [#5 PASV not fun :)][12]