No description
- Shell 64.3%
- Dockerfile 35.7%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .forgejo/workflows | ||
| src | ||
| .bumpversion.toml | ||
| .dockerfilelintrc | ||
| .mailmap | ||
| .pre-commit-config.yaml | ||
| CHANGELOG.md | ||
| Dockerfile | ||
| LICENSE | ||
| README.md | ||
| renovate.json5 | ||
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'