拉取镜像
docker pull delron/fastdfs
查看镜像
docker images
使用docker镜像构建tracker容器
docker run -dti --network=host --name tracker -v /var/fdfs/tracker:/var/fdfs -v /etc/localtime:/etc/localtime delron/fastdfs tracker
使用docker镜像构建storage容器
记得修改ip
docker run -dti --network=host --name storage -e TRACKER_SERVER=120.76.217.236:22122 -v /var/fdfs/storage:/var/fdfs -v /etc/localtime:/etc/localtime delron/fastdfs storage
修改端口(8888没有占用可不修改)
进入storage的容器内部
docker exec -it storage /bin/bash
centos7 安装vim
yum -y install vim
修改端口(两个位置)
1.storage配置类
cd /etc/fdf
2.ng配置类
cd /usr/local/nginx/conf/
重启nginx
./nginx -c /usr/local/nginx/conf/nginx.conf
开启启动容器
docker update --restart=always tracker
docker update --restart=always storage
|