A simple FTP server, using vsftpd.
Find a file
2020-09-04 20:07:57 +01:00
.github chore(ci): use only common buildx platforms 2020-09-02 22:58:43 +01:00
src feat(): removes session support 2020-09-04 20:07:57 +01:00
docker-compose.yml feat(docker): adds example compose file 2020-07-27 16:47:17 +01:00
Dockerfile refact(docker): relocates src code 2020-07-26 23:12:52 +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