Skip to content

Commit 847e2e8

Browse files
committed
增加 nginx 版本 v1.29.8
1 parent 1c3a21c commit 847e2e8

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

docker/demo/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22

33
httpsok-nginx:
44
container_name: httpsok-nginx
5-
image: httpsok/nginx:1.28.0-alpine
5+
# image: httpsok/nginx:1.29.8-alpine
66
# image: httpsok/nginx:1.28.0
77
ports:
88
- "80:80"

docker/nginx/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM nginx:1.27.5
1+
FROM nginx:1.29.8
22

33
LABEL maintainer="httpsok.com" \
44
description="Nginx with HTTPSOK integration" \
5-
version="1.27.5"
5+
version="1.29.8"
66

77
ENV HTTPSOK_TOKEN=""
88

docker/nginx/Dockerfile-alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM nginx:1.27.5-alpine
1+
FROM nginx:1.29.8-alpine
22

33
LABEL maintainer="httpsok.com" \
44
description="Nginx with HTTPSOK integration" \
5-
version="1.27.5"
5+
version="1.29.8"
66

77
ENV HTTPSOK_TOKEN=""
88

docker/nginx/buildx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ cd `dirname $0` && pwd
44

55
echo '开始构建镜像'
66

7-
docker buildx build --platform linux/amd64,linux/arm64 -t httpsok/nginx:1.27.5-alpine --push -f Dockerfile-alpine .
8-
docker buildx build --platform linux/amd64,linux/arm64 -t httpsok/nginx:1.27.5 --push -f Dockerfile .
7+
docker buildx build --platform linux/amd64,linux/arm64 -t httpsok/nginx:1.29.8 --push -f Dockerfile .
8+
#docker buildx build --platform linux/amd64,linux/arm64 -t httpsok/nginx:1.29.8-alpine -t httpsok/nginx:latest --push -f Dockerfile-alpine .
99

1010
# 本地构建镜像并且测试
1111
# COMPOSE_BAKE=true docker-compose build httpsok-nginx-alpine

docker/nginx/compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
# 设置容器名称
99
container_name: httpsok-nginx-alpine
1010
# 镜像
11-
image: httpsok/nginx:1.27.5-alpine
11+
image: httpsok/nginx:1.29.8-alpine
1212
# 端口
1313
ports:
1414
- "80:80"
@@ -24,7 +24,7 @@ services:
2424
- TZ=Asia/Shanghai
2525
# 设置TOKEN,从httpsok.com 控制台获取
2626
- HTTPSOK_TOKEN=2JMRIohknAn4pEuzOZCV
27-
- HTTPSOK_DEV=dev.sh
27+
# - HTTPSOK_DEV=dev.sh
2828

2929
httpsok-nginx:
3030
# 构建
@@ -34,7 +34,7 @@ services:
3434
# 设置容器名称
3535
container_name: httpsok-nginx
3636
# 镜像
37-
image: httpsok/nginx:1.27.5
37+
image: httpsok/nginx:1.29.8
3838
# 端口
3939
ports:
4040
- "80:80"
@@ -50,4 +50,4 @@ services:
5050
- TZ=Asia/Shanghai
5151
# 设置TOKEN,从httpsok.com 控制台获取
5252
- HTTPSOK_TOKEN=2JMRIohknAn4pEuzOZCV
53-
- HTTPSOK_DEV=dev.sh
53+
# - HTTPSOK_DEV=dev.sh

0 commit comments

Comments
 (0)