-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e549f6
commit 2a376de
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,18 @@ RUN /purge-bins && \ | |
rm -rf /media /mnt | ||
|
||
FROM scratch | ||
LABEL org.opencontainers.image.title="chrooted-ftp" | ||
LABEL org.opencontainers.image.description="A dead simple alpine-based docker container to allow users only access their own home directory." | ||
LABEL org.opencontainers.image.ref.name="main" | ||
LABEL org.opencontainers.image.licenses='"Climate Strike" License Version 1.0 (Draft)' | ||
LABEL org.opencontainers.image.vendor="Timo Reymann <[email protected]>" | ||
LABEL org.opencontainers.image.authors="Timo Reymann <[email protected]>" | ||
LABEL org.opencontainers.image.url="https://github.com/timo-reymann/chrooted-ftp" | ||
LABEL org.opencontainers.image.documentation="https://github.com/timo-reymann/chrooted-ftp" | ||
LABEL org.opencontainers.image.source="https://github.com/timo-reymann/chrooted-ftp.git" | ||
|
||
COPY --from=base_system / / | ||
|
||
ENV UMASK 022 | ||
ENV PASSIVE_MIN_PORT 10090 | ||
ENV PASSIVE_MAX_PORT 10100 | ||
|