docker-vsftpd
docker-vsftpd copied to clipboard
๐ณ vsftpd Docker image based on Centos 7. Supports passive mode and virtual users.
If a container is run with _-v /home/ftps/vsftpd-conf/:/etc/vsftpd/_ a folder with all the config file get created but the file vsftpd.conf is empty. As the container attempt to start the...
Fixed run-vsftpd.sh script to prevent multiple additions of config variables to vsftpd.conf at container startup
Changed the default vsftpd log file location to be in the 'logs' docker volume
Here is my docker compose ``` version: "3.7" services: ftp: image: fauria/vsftpd:latest container_name: Ftp restart: always environment: - FTP_USER=adminuser - FTP_PASS=adminpass - PASV_ADDRESS=127.0.0.1 - PASV_MIN_PORT=21100 - PASV_MAX_PORT=21110 volumes: - ftp-data:/home/vsftpd...
Hello, first of all, thanks a lot for this container. Maybe I misunderstood something. Therefore, I would be glad about a hint. I'm struggling adding new users when using docker-compose.yml....
Hi, When loading the container it shows: ยท Log file: /var/log/vsftpd/vsftpd.log but the correct path is /var/log/vsftpd.log
Hi there! Thanks for the effort creating a lightweight ftp docker image! I just missing something, maybe permission issues? So I created a compose file, which is the following: ```...
Hello, The documentation provides an example to manually add a new FTP user to an existing container ``` docker exec -i -t vsftpd bash mkdir /home/vsftpd/myuser echo -e "myuser\nmypass" >>...
I have this stack file: version: '3.2' services: wordpress{id}: image: wordpress:latest deploy: resources: limits: cpus: '0.30' memory: 512M hostname: {id} ports: - {web_port}:80 environment: WORDPRESS_DB_HOST: 172.18.0.1 WORDPRESS_DB_USER: {mysql_user} WORDPRESS_DB_PASSWORD: {mysql_passwd}...