A simple FTP server, using vsftpd.
Find a file
2020-07-26 23:12:52 +01:00
.github chore(github): use var for repo 2020-07-21 22:12:17 +01:00
src refact(docker): relocates src code 2020-07-26 23:12:52 +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 feat(): initial version 2020-07-10 17:27:43 +01:00
VERSION feat(): initial version 2020-07-10 17:27:43 +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 \
	--volume /data:/home/user \
	--publish 21:21 \
	garethflowers/ftp-server

License