Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add with-peruserlimits #7

Merged
merged 3 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -37,6 +37,7 @@ RUN apk update \
\
# Build Pure-FTPd from sources
&& ./configure --prefix=/usr \
--with-peruserlimits \
--with-puredb \
--with-quotas \
--with-ratios \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]



Expand All @@ -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]


Expand Down