Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palw3ey/ye3ftp
A docker FTP server based on vsftpd and Alpine. Below 15 Mb. GNS3 ready.
https://github.com/palw3ey/ye3ftp
alpine cisco docker ftp-client ftp-server gns3 lftp vsftpd-server
Last synced: about 1 month ago
JSON representation
A docker FTP server based on vsftpd and Alpine. Below 15 Mb. GNS3 ready.
- Host: GitHub
- URL: https://github.com/palw3ey/ye3ftp
- Owner: palw3ey
- License: mit
- Created: 2023-12-04T18:58:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-10T13:18:18.000Z (10 months ago)
- Last Synced: 2024-03-10T14:31:48.390Z (10 months ago)
- Topics: alpine, cisco, docker, ftp-client, ftp-server, gns3, lftp, vsftpd-server
- Language: Shell
- Homepage: https://hub.docker.com/r/palw3ey/ye3ftp
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ye3ftp
A container FTP server based on vsftpd and Alpine. Light, below 15 Mb. GNS3 ready.
A FTP client is also included, the command is : lftpThe /data folder is persistent, default login: tux/1234
# Simple usage
```bash
docker run -dt --name myftp palw3ey/ye3ftp
docker exec -it myftp sh --login -c "mgmt"
```# Test
- On the host
```bash
# create a test file :
docker exec -it myftp sh --login -c "echo it_works > /data/test.txt"
```- On a Linux or Windows client
```bash
ftp
open 192.168.9.151 21
login tux 1234
get test.txt
quit# Verify, on Linux
cat test.txt# Verify, on Windows
type test.txt
```On Windows, the ftp command in the terminal do not support the passive option nor the SSL option.
To connect using these options you can use Windows explorer or the CURL command.
For advanced use, prefer WinSCP or FileZilla.# HOWTOs
- Add a user
```bash
docker exec -it myftp sh --login -c "mgmt --action=add --user=tux2 --password=1234"
```- Map to a host folder
```bash
docker run -dt --name myftp \
--net=host \
-e Y_PORT=1022 \
-v /home/{YOUR_USERNAME}/Documents:/data/tux \
-e Y_USER=tux \
-e Y_PASSWORD=strongPassword \
palw3ey/ye3ftp
```- Use the host Let's Encrypt certificates for SSL
```bash
docker run -dt --name myftp \
--net=host \
-e Y_PORT=1022 \
-e Y_SSL=yes \
-v /etc/letsencrypt/live/{YOUR_DOMAIN}/fullchain.pem:/etc/vsftpd/fullchain.pem \
-v /etc/letsencrypt/live/{YOUR_DOMAIN}/privkey.pem:/etc/vsftpd/privkey.pem \
-e Y_USER=tux \
-e Y_PASSWORD=strongPassword \
palw3ey/ye3ftp
```- Configure passive port to match your needs and according to your firewall rules
```bash
docker run -dt --name myftp \
--net=host \
-e Y_PORT=1022 \
-e Y_PASV_ADDRESS={YOUR_HOST_IP} \
-e Y_PASV_MIN=40001 \
-e Y_PASV_MAX=41000 \
-e Y_USER=tux \
-e Y_PASSWORD=strongPassword \
palw3ey/ye3ftp
```
You can use "-p 1022:22" instead of "--net=host -e Y_PORT=1022", but in a PSAV scenario you will have to map every port from PASV_MIN to PASV_MAX, these -p option will create a lot of iptables rules and docker processes.- Use CURL to get file through FTP, allowing PASV and SSL
```bash
curl ftp://tux:[email protected]:21/test.txt --ssl-reqd -T test.txt
```- Use the FTP Client to connect to an FTP Server
```bash
lftp user:password@FTP_server:FTP_port
ls
```# GNS3
To run through GNS3, download and import the appliance : [ye3ftp.gns3a](https://raw.githubusercontent.com/palw3ey/ye3ftp/master/ye3ftp.gns3a)
## How to connect the docker container in the GNS3 topology ?
Drag and drop the device in the topology. Right click on the device and select "Edit config".
If you want a static configuration, uncomment the lines just below `# Static config for eth0` or otherwise `# DHCP config for eth0` for a dhcp configuration. Click "Save".
Add a link to connect the device to a switch or router. Finally, right click on the device, select "Start".
To see the output, right click "Console".
To type commands, right click "Auxiliary console".# Environment Variables
These are the env variables and their default values.
| variables | format | default | description |
| :- |:- |:- |:- |
|Y_LANGUAGE | text | fr_FR | Language. The list is in the folder /i18n/ |
|Y_DEBUG | yes/no | no | yes, Run vsftpd with debug option |
|Y_IP | IP address | 0.0.0.0 | IP address to listen to |
|Y_PORT | port number | 21 | Port to listen to |
|Y_USER | username | tux | The user to create |
|Y_PASSWORD | password | 1234 | The password for the user |
|Y_UID | number | 1000 | The UID to use for all FTP users |
|Y_GID | number | 1000 | The GID to use for all FTP users |
|Y_PERMISSION | permission | 0775 | *file_open_mode* |
|Y_INDIVIDUAL_FOLDER | yes/no | yes | yes, All user use a personal folder. |
|Y_PASV | yes/no | yes | yes, to enable PASV. |
|Y_PASV_ADDRESS | ip address | | *pasv_address* |
|Y_PASV_MIN | port number | 0 | *pasv_min_port* |
|Y_PASV_MAX | port number | 0 | *pasv_max_port* |
|Y_ANONYMOUS | yes/no | no | yes, to allow anonymous logins. Anonymous usernames are : ftp and anonymous |
|Y_ANONYMOUS_WRITE | yes/no | no | yes, to allow anonymous to write|
|Y_SSL | yes/no | no | yes, to enable SSL. Require /etc/vsftpd/fullchain.pem and /etc/vsftpd/privkey.pem |
|Y_SSL_FORCE | yes/no | no | yes, to allow only SSL connections |
|Y_SSL_IMPLICIT | yes/no | no | yes, to enable implicit SSL |# Compatibility
The docker image was compiled to work on these CPU architectures :
- linux/386
- linux/amd64
- linux/arm/v6
- linux/arm/v7
- linux/arm64
- linux/ppc64le
- linux/s390xWork on most computers including Raspberry Pi
# Build
To customize and create your own images. Or simply create an image compatible with your operating system architecture.
```bash
git clone https://github.com/palw3ey/ye3ftp.git
cd ye3ftp
# Make all your modifications, then :
docker build --no-cache --network=host -t ye3ftp .
docker run -dt --name my_customized_ftp ye3ftp
```# Documentation
[vsftpd man page](https://linux.die.net/man/5/vsftpd.conf)
# Version
| name | version |
| :- |:- |
|ye3ftp | 1.0.1 |
|vsftpd | 3.0.5 |
|alpine | 3.20.3 |# Changelog
## [1.0.1] - 2024-02-24
### Added
- FTP Client : lftp
- A Changelog in README.md, using this syntax : [keepachangelog.com](https://keepachangelog.com/en/1.1.0/)
## [1.0.0] - 2023-12-04
### Added
- first release
# ToDo- ~~need to document env variables~~ (2023-12-18)
- add more translation files in i18n folder. Contribute ! Send me your translations by mail ;)Don't hesitate to send me your contributions, issues, improvements on github or by mail.
# License
MIT
author: palw3ey
maintainer: palw3ey
email: [email protected]
website: https://github.com/palw3ey/ye3ftp
docker hub: https://hub.docker.com/r/palw3ey/ye3ftp