10 lines
197 B
Docker
10 lines
197 B
Docker
FROM alpine:3.7
|
|
RUN apk --no-cache add vsftpd
|
|
|
|
COPY start_vsftpd.sh /bin/start_vsftpd.sh
|
|
COPY vsftpd.conf /etc/vsftpd/vsftpd.conf
|
|
|
|
EXPOSE 21 21000-21010
|
|
VOLUME /ftp/ftp
|
|
|
|
CMD "/bin/start_vsftpd.sh"
|