A simple FTP server, using
vsftpd.
To start a container, with data stored in /data on the host, use the
following:
docker run \
--detach \
--env FTP_PASS=123 \
--env FTP_USER=user \
--name my-ftp-server \
--publish 20-21:20-21/tcp \
--publish 40000-40009:40000-40009/tcp \
--volume /data:/home/user \
ricariel/ftp-server
docker composeservices:
ftp-server:
container_name: my-ftp-server
environment:
- FTP_PASS=123
- FTP_USER=user
image: ricariel/ftp-server
ports:
- '20-21:20-21/tcp'
- '40000-40009:40000-40009/tcp'
volumes:
- '/data:/home/user'
Content type
Image
Digest
sha256:2fbcf8185…
Size
4 MB
Last updated
about 8 hours ago
docker pull ricariel/ftp-server