A simple FTP server, using vsftpd.
Find a file
2021-08-05 22:03:28 +01:00
.github chore(deps): bump peter-evans/dockerhub-description from 2.4.2 to 2.4.3 (#9) 2021-07-14 14:20:24 +01:00
src fix(vsftpd): limit to 10 pasv ports 2021-04-12 20:16:46 +01:00
Dockerfile feat(docker): alpine v3.14.0, vsftpd v3.0.4r0 2021-08-05 22:03:28 +01:00
LICENSE feat(): initial version 2020-07-10 17:27:43 +01:00
README.md docs(readme): adds link to vsftpd 2021-04-12 23:29:31 +01:00

FTP Server

A simple FTP server, using vsftpd.

How to use this image

Start a FTP Server instance

To start a container, with data stored in /data on the host, use the following:

docker run \
	--detach \
	--env FTP_PASS=123 \
	--env FTP_USER=user \
	--name my-ftp-server \
	--publish 20-21:20-21/tcp \
	--publish 40000-40009:40000-40009/tcp \
	--volume /data:/home/user \
	garethflowers/ftp-server

License