docker-alpine-ftp-server
docker-alpine-ftp-server copied to clipboard
Small and flexible docker image with vsftpd server
Hi, I am trying to start the container on RHEL7 using the default ``` docker run -d \ -p 21:21 \ -p 21000-21010:21000-21010 \ -e USERS="one|1234" \ -e ADDRESS=ftp.site.domain \...
I have the problem, that the docker container sometimes! exits right after startup with exit code 0 showing only `ftp-server_1 | process has died, quitting` in the output but nothing...
i see `VOLUME /ftp/ftp` in dockerfile, is it required??
Hi, i use this server in testcontainer and everythig works good when it on my local pc , but if i run build on gitlab test fails with this logs...
It would be nice to have tags for versions, so that we can reference them, keeping the setup reproduceable.
I noticed, that when using the default configuration, the NLST command does not return filenames starting with a dot character. It is as such not possible to delete directories which...
Hello! I wish to configure anonymous_enable via environment variable so that I can create a read-only FTP server so that it is easier for people to get on the server...
Removing VOLUME /ftp/ftp from the Dockerfile as it is not needed and creates a separate docker volume #59
This PR allows the use of _FILE vars, to support docker secrets. I also changed the image publishing workflow, but that's just because I didn't really understand what yours was...
After pulling the latest code and creating a docker-compose.yml: ```yml services: alpine-ftp-server: build: . image: delfer/alpine-ftp-server ports: - "21:21" - 21000-21010:21000-21010 environment: - USERS="one|1234" - ADDRESS=localhost ``` and executing `docker-compose...