Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
Docker部署FTP、SFTP和NFS服务步骤1. FTP服务部署
创建Dockerfile:
12345FROM alpine:latestRUN apk add --no-cache vsftpdCOPY vsftpd.conf /etc/vsftpd/vsftpd.confEXPOSE 21 21100-21110CMD ["vsftpd", "/etc/vsftpd/vsftpd.conf"]
创建vsftpd.conf配置文件:
12345678910listen=YESanonymous_enable=YESanon_root=/ftp/publicanon_upload_enable=YESanon_mkdir_write_enable=YESanon_other_write_enable=YESanon_world_readable_only=NOpasv_enable=YESpasv_min_port=21100pasv_max_port=21110
构建并运行容器:
12docker build -t my-f ...


