ftp容器搭建
Posted regit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ftp容器搭建相关的知识,希望对你有一定的参考价值。
一个做ftp的docker-compose文件
version: "2.0" services: ftp-server: image: fauria/vsftpd container_name: ftp-test1 ports: - "2340:20" - "2341:21" - "21100-21110:21100-21110" volumes: - ./data:/home/vsftpd - ./log/vsftpd/:/var/log/vsftpd environment: - FTP_USER=myuser - FTP_PASS=mypass - PASV_MIN_PORT=21100 - PASV_MAX_PORT=21110 - PASV_ADDRESS=10.5.50.200 - LOG_STDOUT=1 restart: always
参考:https://blog.csdn.net/zd18423418323/article/details/83513968
以上是关于ftp容器搭建的主要内容,如果未能解决你的问题,请参考以下文章
Linux下使用docker 拉取 vsftpd 镜像搭建 Ftp 服务器,连接 Ftp 时遇到的错误(425 Failed to establish connection)