Skip to content

egdoc/docker-proftpd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-proftpd

A simple FTP server, using proftpd

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 \
  --detach \
  --env FTP_USER=user \
  --env FTP_PASS=123 \
  --publish 20-21:20-21/tcp \
  --publish 40000-40009:40000-40009/tcp \
  --volume /data:/home/user \
  egdoc/proftpd

... via docker compose

services:
  ftp-server:
    image: egdoc/proftpd
    environment:
      - FTP_PASS=123
      - FTP_USER=user
    ports:
      - '20-21:20-21/tcp'
      - '40000-40009:40000-40009/tcp'
    volumes:
      - '/data:/home/user'

License

About

A simple FTP server, using proftpd

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published