This commit is contained in:
2024-10-28 19:59:39 +08:00
parent a05f3e15eb
commit 4dc7551228
10 changed files with 575 additions and 0 deletions

16
vsftpd/Demo/README.md Normal file
View File

@@ -0,0 +1,16 @@
# 部署 vsftpd
- 服务器数据盘挂载到 /data/ 目录下
- 根据实际环境修改
- docker-compose.yml
- 创建目录
```
grep '\<source:' docker-compose.yml | cut -d: -f2 | xargs mkdir -p
```
- 启动
```
docker-compose up -d
```