Giter Club home page Giter Club logo

docker_vsftpd's Introduction

License OpenIssues Version Docker Size Docker Pull

vsftpd

Dockerfile to create containers with vsftpd service.

๐Ÿงพ Components

  • Debian
  • vsftpd

๐Ÿ”— References

https://github.com/semhoun/docker-vsftpd

โš™๏ธ Environment variables

This image uses environment variables to allow the configuration of some parameters at run time:

  • Variable name: USERS
  • Default value: admin|<ramdom password>||ro
  • Accepted values: name1|password1|[folder1][|<rw|ro>] name2|password2|[folder2][|<rw|ro>]
  • Description: List of user separated by a space or new line \n, user list will be exported on STDOUT. If folder is not specified it will be /ftp/<name/.
  • Exemple:
    • user|password foo|bar|/ftp/foo
    • user|password|/ftp/userddir|rw
    • user|password||ro

  • Variable name: FTP_BANNER
  • Default value: Welcome to My FTP Server
  • Accepted values: any string
  • Description: Banner message the vsftpd server displays when the ftp or sftp client connects to the server.

  • Variable name: USER_ID
  • Default value: 33
  • Accepted values: any integer
  • Description: vsftpd user id.

  • Variable name: GROUP_ID
  • Default value: 33
  • Accepted values: any integer
  • Description: vsftpd group id.

  • Variable name: DATA_PORT
  • Default value: 20
  • Accepted values: any integer
  • Description: FTP data port.

  • Variable name: FTP_PORT
  • Default value: 21
  • Accepted values: any integer
  • Description: FTP port.

  • Variable name: PASV_ADDRESS
  • Default value: Docker host IP / Hostname.
  • Accepted values: Any IPv4 address or Hostname (see PASV_ADDRESS_RESOLVE).
  • Description: If you don't specify an IP address to be used in passive mode, the routed IP address of the Docker host will be used. Bear in mind that this could be a local address.

  • Variable name: PASV_ADDR_RESOLVE
  • Default value: NO
  • Accepted values: <NO|YES>
  • Description: Set to YES if you want to use a hostname (as opposed to IP address) in the PASV_ADDRESS option.

  • Variable name: PASV_ENABLE
  • Default value: YES
  • Accepted values: <NO|YES>
  • Description: Set to NO if you want to disallow the PASV method of obtaining a data connection.

  • Variable name: PASV_MIN_PORT
  • Default value: 21100
  • Accepted values: Any valid port number.
  • Description: This will be used as the lower bound of the passive mode port range. Remember to publish your ports with docker -p parameter.

  • Variable name: PASV_MAX_PORT
  • Default value: 21110
  • Accepted values: Any valid port number.
  • Description: This will be used as the upper bound of the passive mode port range. It will take longer to start a container with a high number of published ports.

  • Variable name: PASV_PROMISCUOUS
  • Default value: NO
  • Accepted values: <NO|YES>
  • Description: Set to YES if you want to disable the PASV security check that ensures the data connection originates from the same IP address as the control connection. Only enable if you know what you are doing! The only legitimate use for this is in some form of secure tunnelling scheme, or perhaps to facilitate FXP support.

  • Variable name: FILE_OPEN_MODE
  • Default value: 0666
  • Accepted values: File system permissions.
  • Description: The permissions with which uploaded files are created. Umasks are applied on top of this value. You may wish to change to 0777 if you want uploaded files to be executable.

  • Variable name: LOCAL_UMASK
  • Default value: 077
  • Accepted values: File system permissions.
  • Description: The value that the umask for file creation is set to for local users. NOTE! If you want to specify octal values, remember the "0" prefix otherwise the value will be treated as a base 10 integer!

Use cases

  1. Create a temporary container for testing purposes:
  docker run --rm semhoun/vsftpd
  1. Create a container in active mode using the default user account, with a binded data directory:
docker run -d -p 21:21 -v /my/data/directory:/tmp --name vsftpd semhoun/vsftpd
# see logs for accounts:
docker logs vsftpd
  1. Create a production container with a custom user account, binding a data directory and enabling both active and passive mode:
docker run -d -v /my/data/directory:/ftp \
-p 20:20 -p 21:21 -p 21100-21110:21100-21110 \
-e USERS="user|p@ssw0rd|/ftp/user/|rw" \
-e PASV_ADDRESS=127.0.0.1 -e PASV_MIN_PORT=21100 -e PASV_MAX_PORT=21110 \
--name vsftpd --restart=always fauria/vsftpd
  1. Create a production container with a custom user account, binding a data directory and enabling both active and passive mode (Docker Compose version):
services:
  vsftpd:
    image: semhoun/vsftpd
    restart: always
    environment:
      USERS: |
        user1|p@ssw0rd|/ftp/user1/|rw
        user2|p@ssw0rd|/ftp/user2/|ro
      BANNER: "Welcome to Semhoun vsFTP"
      PASV_ADDRESS: "192.168.13.1"
      PASV_MIN_PORT: 21000
      PASV_MAX_PORT: 21010
    ports:
      - 20:20
      - 21:21
      - 21000-21010:21000-21010
    volumes:
      - ./data:/ftp

docker_vsftpd's People

Contributors

semhoun avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.