Compare commits
10 Commits
77b65574da
...
1388920053
Author | SHA1 | Date | |
---|---|---|---|
1388920053 | |||
88979d327b | |||
98642cf280 | |||
78b9affb9c | |||
28ea3609c1 | |||
fc8c0a489f | |||
5cef43fdaa | |||
5f0424e2aa | |||
98dc1fb1a5 | |||
970da1228c |
12
.gitea/workflows/container.yaml
Normal file
12
.gitea/workflows/container.yaml
Normal 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 }}
|
@ -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 .
|
|
@ -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 \
|
RUN apk add --no-cache \
|
||||||
openssl \
|
openssl \
|
||||||
openssh-client \
|
openssh-client \
|
||||||
zlib \
|
zlib \
|
||||||
perl
|
perl \
|
||||||
|
|
||||||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
|
|
||||||
proftpd \
|
proftpd \
|
||||||
proftpd-mod_sftp \
|
proftpd-mod_sftp \
|
||||||
proftpd-utils
|
proftpd-utils
|
||||||
@ -22,6 +20,6 @@ ADD /rootfs /
|
|||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
VOLUME /etc/proftpd/keys /var/lib/ftp/data
|
VOLUME /var/lib/ftp/data
|
||||||
|
|
||||||
EXPOSE 22
|
EXPOSE 2222
|
17
README.md
17
README.md
@ -2,7 +2,19 @@ File access with [ProFTPD](http://www.proftpd.org/) over sftp and a static user/
|
|||||||
|
|
||||||
# Volumes
|
# Volumes
|
||||||
- `/var/lib/ftp/data`: root directory for files
|
- `/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
|
# Environment Variables
|
||||||
## SERVER_NAME
|
## SERVER_NAME
|
||||||
@ -25,5 +37,6 @@ Uid for the static user.
|
|||||||
## STATIC_GID
|
## STATIC_GID
|
||||||
Gid for the static user.
|
Gid for the static user.
|
||||||
|
|
||||||
|
|
||||||
# Ports
|
# Ports
|
||||||
- 22
|
- 2222
|
||||||
|
6
rootfs/etc/cont-init.d/04-static-user → rootfs/bin/static-user
Normal file → Executable file
6
rootfs/etc/cont-init.d/04-static-user → rootfs/bin/static-user
Normal file → Executable file
@ -1,12 +1,12 @@
|
|||||||
#!/usr/bin/with-contenv sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ ! -z ${STATIC_USER+x} ]; then
|
if [ ! -z ${STATIC_USER+x} ]; then
|
||||||
echo ${STATIC_PASSWORD} | ftpasswd \
|
echo ${STATIC_PASSWORD} | ftpasswd \
|
||||||
--sha512 \
|
--sha512 \
|
||||||
--passwd \
|
--passwd \
|
||||||
--home /var/lib/ftp/data \
|
--home /var/lib/ftp/data \
|
||||||
--uid "$STATIC_UID" \
|
--uid "2222" \
|
||||||
--gid "$STATIC_GID" \
|
--gid "2222" \
|
||||||
--name "$STATIC_USER" \
|
--name "$STATIC_USER" \
|
||||||
--shell /bin/sh \
|
--shell /bin/sh \
|
||||||
--file /etc/proftpd/passwd \
|
--file /etc/proftpd/passwd \
|
@ -3,7 +3,7 @@ Include /etc/proftpd/modules.d/*.conf
|
|||||||
ServerName "{{getenv "SERVER_NAME"}}"
|
ServerName "{{getenv "SERVER_NAME"}}"
|
||||||
ServerType standalone
|
ServerType standalone
|
||||||
DefaultServer on
|
DefaultServer on
|
||||||
Port 22
|
Port 2222
|
||||||
UseIPv6 off
|
UseIPv6 off
|
||||||
Umask {{ getenv "UMASK" "006 007" }}
|
Umask {{ getenv "UMASK" "006 007" }}
|
||||||
MaxInstances 30
|
MaxInstances 30
|
||||||
@ -27,6 +27,6 @@ AuthUserFile /etc/proftpd/passwd
|
|||||||
SFTPEngine on
|
SFTPEngine on
|
||||||
SFTPAuthMethods password
|
SFTPAuthMethods password
|
||||||
SFTPDHParamFile /etc/proftpd/keys/dhparams.pem
|
SFTPDHParamFile /etc/proftpd/keys/dhparams.pem
|
||||||
SFTPHostKey /etc/proftpd/keys/ssh_rsa_key
|
SFTPHostKey /etc/proftpd/keys/ssh_key
|
||||||
SFTPOptions IgnoreSCPUploadPerms IgnoreSFTPUploadPerms
|
SFTPOptions IgnoreSCPUploadPerms IgnoreSFTPUploadPerms
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
@ -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
|
|
@ -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
|
|
@ -1 +0,0 @@
|
|||||||
/var/lib/ftp/data/ true proftpd:access 0666 0777
|
|
2
rootfs/etc/s6-overlay/s6-rc.d/proftpd/dependencies
Normal file
2
rootfs/etc/s6-overlay/s6-rc.d/proftpd/dependencies
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
confd
|
||||||
|
static-user
|
3
rootfs/etc/s6-overlay/s6-rc.d/proftpd/run
Normal file
3
rootfs/etc/s6-overlay/s6-rc.d/proftpd/run
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec proftpd --nodaemon
|
1
rootfs/etc/s6-overlay/s6-rc.d/proftpd/type
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/proftpd/type
Normal file
@ -0,0 +1 @@
|
|||||||
|
longrun
|
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/dependencies
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/dependencies
Normal file
@ -0,0 +1 @@
|
|||||||
|
confd
|
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/type
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/type
Normal file
@ -0,0 +1 @@
|
|||||||
|
oneshot
|
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/up
Normal file
1
rootfs/etc/s6-overlay/s6-rc.d/static-user/up
Normal file
@ -0,0 +1 @@
|
|||||||
|
static-user
|
@ -1,3 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv sh
|
|
||||||
|
|
||||||
exec proftpd --nodaemon
|
|
Loading…
Reference in New Issue
Block a user