Compare commits

...

10 Commits

17 changed files with 45 additions and 39 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View File

@ -1,12 +0,0 @@
stages:
- build
variables:
IMAGE_NAME: thallian/user-access
CI_BUILD_ARCHS: "linux/amd64,linux/arm64"
build:
stage: build
script:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
- docker buildx build --platform "$CI_BUILD_ARCHS" --progress plain --pull --tag "$IMAGE_NAME:$CI_COMMIT_SHA" --tag "$IMAGE_NAME:$CI_COMMIT_REF_NAME" --tag "$IMAGE_NAME:latest" --push .

View File

@ -1,12 +1,10 @@
FROM thallian/confd-env:latest
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
RUN apk add --no-cache \
openssl \
openssh-client \
zlib \
perl
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
perl \
proftpd \
proftpd-mod_sftp \
proftpd-utils
@ -22,6 +20,6 @@ ADD /rootfs /
WORKDIR /
VOLUME /etc/proftpd/keys /var/lib/ftp/data
VOLUME /var/lib/ftp/data
EXPOSE 22
EXPOSE 2222

View File

@ -2,7 +2,19 @@ File access with [ProFTPD](http://www.proftpd.org/) over sftp and a static user/
# Volumes
- `/var/lib/ftp/data`: root directory for files
- `/etc/proftpd/keys`: ssh key files
# Files
## /etc/proftpd/keys/dhparams.pem
```
openssl dhparam -outform PEM -5
```
## /etc/proftpd/keys/ssh_key
```
ssh-keygen -b 2048 -t ed25519 -q -N "" -f ./ssh
cat ./ssh
```
# Environment Variables
## SERVER_NAME
@ -25,5 +37,6 @@ Uid for the static user.
## STATIC_GID
Gid for the static user.
# Ports
- 22
- 2222

View File

@ -1,12 +1,12 @@
#!/usr/bin/with-contenv sh
#!/bin/sh
if [ ! -z ${STATIC_USER+x} ]; then
echo ${STATIC_PASSWORD} | ftpasswd \
--sha512 \
--passwd \
--home /var/lib/ftp/data \
--uid "$STATIC_UID" \
--gid "$STATIC_GID" \
--uid "2222" \
--gid "2222" \
--name "$STATIC_USER" \
--shell /bin/sh \
--file /etc/proftpd/passwd \

View File

@ -3,7 +3,7 @@ Include /etc/proftpd/modules.d/*.conf
ServerName "{{getenv "SERVER_NAME"}}"
ServerType standalone
DefaultServer on
Port 22
Port 2222
UseIPv6 off
Umask {{ getenv "UMASK" "006 007" }}
MaxInstances 30
@ -27,6 +27,6 @@ AuthUserFile /etc/proftpd/passwd
SFTPEngine on
SFTPAuthMethods password
SFTPDHParamFile /etc/proftpd/keys/dhparams.pem
SFTPHostKey /etc/proftpd/keys/ssh_rsa_key
SFTPHostKey /etc/proftpd/keys/ssh_key
SFTPOptions IgnoreSCPUploadPerms IgnoreSFTPUploadPerms
</IfModule>

View File

@ -1,5 +0,0 @@
#!/usr/bin/with-contenv sh
if [ ! -f /etc/proftpd/keys/dhparams.pem ]; then
openssl dhparam -outform PEM -5 nbits >> /etc/proftpd/keys/dhparams.pem
fi

View File

@ -1,5 +0,0 @@
#!/usr/bin/with-contenv sh
if [ ! -f /etc/proftpd/keys/ssh_rsa_key ]; then
ssh-keygen -b 2048 -t rsa -f /etc/proftpd/keys/ssh_rsa_key -q -N ""
fi

View File

@ -1 +0,0 @@
/var/lib/ftp/data/ true proftpd:access 0666 0777

View File

@ -0,0 +1,2 @@
confd
static-user

View File

@ -0,0 +1,3 @@
#!/bin/sh
exec proftpd --nodaemon

View File

@ -0,0 +1 @@
longrun

View File

@ -0,0 +1 @@
confd

View File

@ -0,0 +1 @@
oneshot

View File

@ -0,0 +1 @@
static-user

View File

@ -1,3 +0,0 @@
#!/usr/bin/with-contenv sh
exec proftpd --nodaemon