Skip to content
This repository was archived by the owner on Jan 6, 2018. It is now read-only.

dockerizedrupal/vsftpd-for-docker

Repository files navigation

vsftpd-for-docker

A Docker image for vsftpd.

Run the container

CONTAINER="vsftpd" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  -p 20:20 \
  -p 21:21 \
  -p 50000-50002:50000-50002 \
  -e SERVER_NAME="localhost" \
  -e TIMEZONE="Etc/UTC" \
  -e VSFTPD_1_USERNAME="" \
  -e VSFTPD_1_PASSWORD="" \
  -e VSFTPD_1_HOME="" \
  -e VSFTPD_1_USER_ID="1000" \
  -e VSFTPD_1_GROUP_ID="1000" \
  -d \
  dockerizedrupal/vsftpd:2.0.0

Build the image

TMP="$(mktemp -d)" \
  && git clone https://github.com/dockerizedrupal/vsftpd-for-docker.git "${TMP}" \
  && cd "${TMP}" \
  && git checkout 2.0.0 \
  && sudo docker build -t dockerizedrupal/vsftpd:2.0.0 . \
  && cd -

License

MIT

About

This project is part of the Dockerized Drupal initiative.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors