Sign inSign up

ricariel/ftp-server

By ricariel

•Updated about 8 hours ago

Image
0

8.7K

ricariel/ftp-server repository overview

⁠FTP Server

A simple FTP server, using vsftpd⁠.

⁠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_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
⁠... via docker compose
services:
  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'

Tag summary

Content type

Image

Digest

sha256:2fbcf8185…

Size

4 MB

Last updated

about 8 hours ago

docker pull ricariel/ftp-server