A simple FTP server, using vsftpd.
Find a file
2021-04-12 14:55:07 +01:00
.github chore(github): update docker push process 2021-04-12 14:07:17 +01:00
src feat(docker): sets a default banner message 2020-09-15 00:43:09 +01:00
Dockerfile refact(docker): removes custom labels 2021-04-12 14:55:07 +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