Docker安装FastDFS
#1. 拉取fastDFS镜像
docker pull morunchang/fastdfs
#2. 启动tracker
docker run -d --name tracker --net=host morunchang/fastdfs sh tracker.sh
#3. 启动storage
docker run -d --name storage --net=host -e TRACKER_IP= 服务器IP:22122 -e GROUP_NAME=group1 morunchang/fastdfs sh storage.sh
#4. 开启tracker和storage容器开机启动
docker update --restart=always tracker
docker update --restart=always storage
#5. 此时Nginx是已经默认安装好了的(在启动tracker和storage时),进行storage容器
docker exec -it storage /bin/bash
#6. 进入并修改nginx.conf
cd /etc/nginx/conf
vi nginx.conf
#7. 配置去除删除缓存
add_header Cache-Control no-store;
#8. 退出storage容器
exit
#9. 重启storage容器
docker restart storage
就这么简单~!!