A simple FTP server, using vsftpd.
Find a file
2020-09-06 23:57:45 +01:00
.github chore(ci): fixes version extraction 2020-09-05 00:21:08 +01:00
src feat(ftp): more complete options 2020-09-04 23:52:06 +01:00
Dockerfile fix(docker): expose tcp ports only 2020-09-06 23:57:45 +01:00
LICENSE feat(): initial version 2020-07-10 17:27:43 +01:00
README.md docs(readme): use host network for passive port range 2020-09-04 15:51: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 \
	--name my-ftp-server \
	--detach \
	--env FTP_USER=user \
	--env FTP_PASS=123 \
	--network host \
	--volume /data:/home/user \
	garethflowers/ftp-server

License