Updated: 26 January 2021

Docker

We maintain a dockerhub repository with alpine images of our Simple FTP Server.

You can start a new simple FTP service using docker with a command like so:

docker run \
 -e LICENSE=<MyLicense> \
 -e REGION=ap-southeast-2 \
 -p 2022:2022 -p 2021:2021 -p 9990:9990 \
 doceventio/sfs-server:latest
  • You can build from this image and add your SSL certificates and RSA keys to the image.
  • Alternatively you can attach the local disk and specify the certificates and rsa keys this way.
  • All options on the command line can be specified as environment variables, and this is recommended.

Note: To use passive FTP you need to also pass through the passive FTP ports to the docker container