环境准备。
libfastcommonV1.0.7.tar.gz
FastDFS_v5.05.tar.gz
nginx-1.13.6.tar.gz
fastdfs-nginx-module_v1.16.tar.gz
创建工作目录 在 Linux 服务器上创建 /usr/local/docker/fastdfs/environmen
目录。
说明:
/usr/local/docker/fastdfs
:用于存放 docker-compose.yml
配置文件及 FastDFS 的数据卷
/usr/local/docker/fastdfs/environmen
:用于存放 Dockerfile
镜像配置文件及 FastDFS 所需环境
docker-compose.yml 1 2 3 4 5 6 7 8 9 version: '3.1' services: fastdfs: build: environment restart: always container_name: fastdfs volumes: - ./storage:/fastdfs/storage network_mode: host
Dockerfile 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 ROM ubuntu:xenial MAINTAINER 1183895890 @qq.comWORKDIR /etc/apt RUN echo 'deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse' > sources.list RUN echo 'deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse' >> sources.list RUN echo 'deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse' >> sources.list RUN echo 'deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse' >> sources.list RUN apt-get update RUN apt-get install make gcc libpcre3-dev zlib1g-dev --assume-yes ADD FastDFS_v5.05.tar.gz /usr/local /src ADD fastdfs-nginx-module_v1.16.tar.gz /usr/local /src ADD libfastcommonV1.0.7.tar.gz /usr/local /src ADD nginx-1.16.1.tar.gz /usr/local /src WORKDIR /usr/local /src/libfastcommon-1.0.7 RUN ./make.sh && ./make.sh install WORKDIR /usr/local /src/FastDFS RUN ./make.sh && ./make.sh install ADD tracker.conf /etc/fdfs RUN mkdir -p /fastdfs/tracker ADD storage.conf /etc/fdfs RUN mkdir -p /fastdfs/storage ADD client.conf /etc/fdfs ADD config /usr/local /src/fastdfs-nginx-module/src WORKDIR /usr/local /src/nginx-1.16.1 RUN ./configure --add-module=/usr/local /src/fastdfs-nginx-module/src RUN make && make install ADD mod_fastdfs.conf /etc/fdfs WORKDIR /usr/local /src/FastDFS/conf RUN cp http.conf mime.types /etc/fdfs/ ADD nginx.conf /usr/local /nginx/conf RUN ln -s /usr/lib64/libfastcommon.so /usr/local /lib/libfastcommon.so RUN ln -s /usr/lib64/libfastcommon.so /usr/lib/libfastcommon.so RUN ln -s /usr/lib64/libfdfsclient.so /usr/local /lib/libfdfsclient.so RUN ln -s /usr/lib64/libfdfsclient.so /usr/lib/libfdfsclient.so COPY entrypoint.sh /usr/local /bin/ ENTRYPOINT ["/usr/local/bin/entrypoint.sh" ] WORKDIR / EXPOSE 8888 CMD ["/bin/bash" ]
entrypoint.sh 1 2 3 4 # !/bin/sh fdfs_trackerd /etc/fdfs/tracker.conf fdfs_storaged /etc/fdfs/storage.conf /usr/local/nginx/sbin/nginx -g 'daemon off;'
注:Shell 创建后是无法直接使用的,需要赋予执行的权限,使用 chmod +x entrypoint.sh
命令
各种配置文件说明 tracker.conf FastDFS 跟踪器配置,容器中路径为:/etc/fdfs,修改为:
1 base_path=/fastdfs/tracker
storage.conf FastDFS 存储配置,容器中路径为:/etc/fdfs,修改为:
1 2 3 4 base_path=/fastdfs/storage store_path0=/fastdfs/storage tracker_server=192.168.33.10:22122 http.server_port=8888
client.conf FastDFS 客户端配置,容器中路径为:/etc/fdfs,修改为:
1 2 ase_path=/fastdfs/tracker tracker_server=192.168.33.10:22122
config fastdfs-nginx-module 配置文件,容器中路径为:/usr/local/src/fastdfs-nginx-module/src,修改为:
1 2 3 4 5 6 7 CORE_INCS="$CORE_INCS /usr/local/include/fastdfs /usr/local/include/fastcommon/" CORE_LIBS="$CORE_LIBS -L/usr/local/lib -lfastcommon -lfdfsclient" CORE_INCS="$CORE_INCS /usr/include/fastdfs /usr/include/fastcommon/" CORE_LIBS="$CORE_LIBS -L/usr/lib -lfastcommon -lfdfsclient"
mod_fastdfs.conf fastdfs-nginx-module 配置文件,容器中路径为:/usr/local/src/fastdfs-nginx-module/src,修改为:
1 2 3 4 connect_timeout=10 tracker_server=192.168.33.10:22122 url_have_group_name = true store_path0=/fastdfs/storage
nginx.conf Nginx 配置文件,容器中路径为:/usr/local/src/nginx-1.13.6/conf,修改为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 user root; worker_processes 1 ; events { worker_connections 1024 ; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65 ; server { listen 8888 ; server_name localhost; location ~/group([0-9])/M00 { ngx_fastdfs_module; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
启动容器
测试上传 交互式进入容器 1 docker exec -it fastdfs /bin/bash
测试文件上传 1 /usr/bin/fdfs_upload_file /etc/fdfs/client.conf /usr/local/src/FastDFS/INSTALL
服务器反馈上传地址 1 group1/M00/00/00/wKhLi1oHVMCAT2vrAAAeSwu9TgM39767
测试 Nginx 访问 1 http://192.168.33.10:8888/group1/M00/00/00/wKhLi1oHVMCAT2vrAAAeSwu9TgM3976771