Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « ftp-php7.0 - github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64e6a91fac2213025b7e905f7f40facc04c03dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Based upon https://github.com/MorrisJobke/docker-proftpd
From nextcloudci/php7.0:php7.0-16

RUN apt-get update
RUN apt-get -y install debconf-utils
RUN echo "poftpd-basic shared/proftpd/inetd_or_standalone select standalone" | debconf-set-selections

RUN apt-get install -y proftpd

ADD launch /launch
ADD proftpd.conf /etc/proftpd/proftpd.conf
RUN chown root:root /etc/proftpd/proftpd.conf
RUN mkdir /ftp
RUN chmod a+x /launch