A simple FTP server, using vsftpd.
Find a file
dependabot[bot] ed812ba47e
chore(deps): bump docker/metadata-action from 4.2.0 to 4.3.0 (#39)
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](https://github.com/docker/metadata-action/compare/v4.2.0...v4.3.0)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-01-13 20:36:34 +00:00
.github chore(deps): bump docker/metadata-action from 4.2.0 to 4.3.0 (#39) 2023-01-13 20:36:34 +00:00
src fix(conf): prevent connections on port 20 (#32) 2022-10-20 10:49:28 +01:00
.editorconfig chore(conf): adds .editorconfig 2022-03-19 23:26:51 +00:00
_config.yml feat(): adds _config.yml 2022-06-24 00:43:55 +01:00
Dockerfile chore(deps): bump alpine from 3.17.0 to 3.17.1 (#37) 2023-01-09 22:10:17 +00:00
LICENSE feat(): initial version 2020-07-10 17:27:43 +01:00
README.md docs(readme): adds docker compose example 2022-01-22 23:03:13 +00:00
test.sh test(): exit tests if anything fails 2022-01-22 22:34:46 +00:00

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 \
	garethflowers/ftp-server

... via docker compose

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

License