docker-ftp-server/README.md

515 B

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