delfer / docker-alpine-ftp-server

Small and flexible docker image with vsftpd server
186 stars 131 forks source link

Can't deploying multiple users #34

Closed JasonB73 closed 2 years ago

JasonB73 commented 2 years ago

docker run -d \ -p 21:21 \ -p 21000-21010:21000-21010 \ --name=FTP-Server -e one|password1|one|1001] two|password2|two|1002\ -e ADDRESS=ftp.site.domain \ delfer/alpine-ftp-server

This format below is not working for me or I'm doing something wrong name1|password1|[folder1][|uid1] name2|password2|[folder2][|uid2]

My goal is too add multiple users when deploying from command line. If anyone can point me in the correct way please do.

JasonB73 commented 2 years ago

I found you can use a password ending with "!" for a single user, but not when your doing more than one. Have everything working and DIR's locked down per user. Thanks