勤恳篮球

文章
8
资源
0
加入时间
2年10月21天

Docker搭建FTP文件服务器一、启动容器

version: '3'services: ftp: restart: always image: fauria/vsftpd:latest container_name: ftp privileged: true ports: - '20:20' - '21:21' - '21100-21110:21100-21110' volumes: - "./data:/home/vsftpd" en