Skip to content

Commit f31cb96

Browse files
committed
V6.12.2
1 parent 0f06eda commit f31cb96

File tree

4 files changed

+26
-12
lines changed

4 files changed

+26
-12
lines changed

.github/workflows/deploy_images.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: docker-image
22

33
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
4+
release:
5+
types: [published]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
810

911
jobs:
1012
debian_deploy:
@@ -34,7 +36,7 @@ jobs:
3436
platforms: linux/amd64
3537
file: Dockerfile
3638
tags: |
37-
yaokun/fastdfs:V6.11
39+
yaokun/fastdfs:${{ github.event.release.tag_name }}
3840
yaokun/fastdfs:latest
3941
4042
alpine_deploy:
@@ -64,5 +66,5 @@ jobs:
6466
platforms: linux/amd64
6567
file: Dockerfile-alpine
6668
tags: |
67-
yaokun/fastdfs:V6.11-alpine
69+
yaokun/fastdfs:${{ github.event.release.tag_name }}-alpine
6870
yaokun/fastdfs:alpine

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ RUN set -x \
2020
&& ls /opt \
2121
&& cd /opt/tmp \
2222
# git clone libfastcommon, libserverframe, fastdfs, fastdfs-nginx-module
23-
&& git clone -b V1.0.71 https://github.com/happyfish100/libfastcommon.git --depth 1 \
24-
&& git clone -b V1.2.1 https://github.com/happyfish100/libserverframe.git --depth 1 \
25-
&& git clone -b V6.11.0 https://github.com/happyfish100/fastdfs.git --depth 1 \
23+
&& git clone -b V6.12.2 https://github.com/happyfish100/fastdfs.git --depth 1 \
24+
&& git clone -b V1.0.75 https://github.com/happyfish100/libfastcommon.git --depth 1 \
25+
&& git clone -b V1.2.5 https://github.com/happyfish100/libserverframe.git --depth 1 \
2626
&& git clone -b V1.24 https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1 \
2727
&& wget https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz \
2828
&& tar -zxvf nginx-$NGINX_VERSION.tar.gz \

Dockerfile-alpine

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ RUN set -eux \
1818
# git clone libfastcommon / libserverframe / fastdfs / fastdfs-nginx-module
1919
&& mkdir /opt/tmp /opt/fastdfs \
2020
&& cd /opt/tmp \
21-
&& git clone -b V1.0.71 https://github.com/happyfish100/libfastcommon.git --depth 1 \
22-
&& git clone -b V1.2.1 https://github.com/happyfish100/libserverframe.git --depth 1 \
23-
&& git clone -b V6.11.0 https://github.com/happyfish100/fastdfs.git --depth 1 \
21+
&& git clone -b V6.12.2 https://github.com/happyfish100/fastdfs.git --depth 1 \
22+
&& git clone -b V1.0.75 https://github.com/happyfish100/libfastcommon.git --depth 1 \
23+
&& git clone -b V1.2.5 https://github.com/happyfish100/libserverframe.git --depth 1 \
2424
&& git clone -b V1.24 https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1 \
2525
&& wget https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz \
2626
&& tar -zxvf nginx-$NGINX_VERSION.tar.gz \

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# FastDFS
22

3+
### 版本说明
4+
5+
| FastDFS | libfastcommon | libserverframe | fastdfs-nginx-module |
6+
| :---------: | :-----------: | :------------: | :------------------: |
7+
| **v6.12.2** | v1.0.75 | v1.2.5 | v1.24 |
8+
| **v6.11.0** | v1.0.71 | v1.2.1 | v1.24 |
9+
| **v6.10.0** | v1.0.70 | v1.1.28 | v1.22 |
10+
| **v6.09** | v1.0.68 | v1.1.28 | v1.23 |
11+
| **v5.05** | v1.0.7 | **不需要** | v1.20 |
12+
13+
FastDFS v6.x 开始必须依赖 `libserverframe`(网络框架库),v5.x 及以下版本无需。
314

415
## 目录介绍
16+
517
### conf
618
Dockerfile 所需要的一些配置文件
719
当然你也可以对这些文件进行一些修改 比如`storage.conf`里面的`bast_path`等相关

0 commit comments

Comments
 (0)