You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ba...@apache.org on 2023/04/12 02:14:43 UTC

[apisix-docker] branch master updated: feat: bump dashboard to 3.0.1 (#455)

This is an automated email from the ASF dual-hosted git repository.

baoyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new 821b474  feat: bump dashboard to 3.0.1 (#455)
821b474 is described below

commit 821b4744a003cdff5eff75c2a1896ec0eaa1089a
Author: Baoyuan <ba...@gmail.com>
AuthorDate: Wed Apr 12 10:14:36 2023 +0800

    feat: bump dashboard to 3.0.1 (#455)
---
 .github/workflows/dashboard_all_in_one_ci.yaml   | 2 +-
 .github/workflows/dashboard_push_docker_hub.yaml | 2 +-
 Makefile                                         | 2 +-
 dashboard/Dockerfile.alpine                      | 2 +-
 dashboard/Dockerfile.centos                      | 2 +-
 example/docker-compose-arm64.yml                 | 2 +-
 example/docker-compose.yml                       | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/dashboard_all_in_one_ci.yaml b/.github/workflows/dashboard_all_in_one_ci.yaml
index 176d058..c7552eb 100644
--- a/.github/workflows/dashboard_all_in_one_ci.yaml
+++ b/.github/workflows/dashboard_all_in_one_ci.yaml
@@ -13,7 +13,7 @@ jobs:
     runs-on: ubuntu-latest
 
     env:
-      APISIX_DASHBOARD_VERSION: "2.15.1" # in semver
+      APISIX_DASHBOARD_VERSION: "3.0.1" # in semver
     
     steps:
       - uses: actions/checkout@v2
diff --git a/.github/workflows/dashboard_push_docker_hub.yaml b/.github/workflows/dashboard_push_docker_hub.yaml
index f22c56e..1110668 100644
--- a/.github/workflows/dashboard_push_docker_hub.yaml
+++ b/.github/workflows/dashboard_push_docker_hub.yaml
@@ -15,7 +15,7 @@ jobs:
     runs-on: ubuntu-latest
 
     env:
-      APISIX_DASHBOARD_VERSION: "2.15.1" # in semver
+      APISIX_DASHBOARD_VERSION: "3.0.1" # in semver
 
     steps:
       - name: Check out the repo
diff --git a/Makefile b/Makefile
index fcf835d..bb6d030 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ MAX_APISIX_VERSION ?= 3.2.0
 IMAGE_NAME = apache/apisix
 IMAGE_TAR_NAME = apache_apisix
 
-APISIX_DASHBOARD_VERSION ?= $(shell echo ${APISIX_DASHBOARD_VERSION:=2.15.1})
+APISIX_DASHBOARD_VERSION ?= $(shell echo ${APISIX_DASHBOARD_VERSION:=3.0.1})
 APISIX_DASHBOARD_IMAGE_NAME = apache/apisix-dashboard
 APISIX_DASHBOARD_IMAGE_TAR_NAME = apache_apisix_dashboard
 
diff --git a/dashboard/Dockerfile.alpine b/dashboard/Dockerfile.alpine
index e5daca5..b04d1ba 100644
--- a/dashboard/Dockerfile.alpine
+++ b/dashboard/Dockerfile.alpine
@@ -18,7 +18,7 @@ ARG BUILDPLATFORM=amd64
 
 FROM --platform=$BUILDPLATFORM alpine:latest as pre-build
 
-ARG APISIX_DASHBOARD_TAG=v3.0.0
+ARG APISIX_DASHBOARD_TAG=v3.0.1
 
 RUN set -x \
     && apk add --no-cache --virtual .builddeps git \
diff --git a/dashboard/Dockerfile.centos b/dashboard/Dockerfile.centos
index f60632c..24d1463 100644
--- a/dashboard/Dockerfile.centos
+++ b/dashboard/Dockerfile.centos
@@ -18,7 +18,7 @@ ARG BUILDPLATFORM=amd64
 
 FROM --platform=$BUILDPLATFORM alpine:latest as pre-build
 
-ARG APISIX_DASHBOARD_TAG=v3.0.0
+ARG APISIX_DASHBOARD_TAG=v3.0.1
 
 RUN set -x \
     && apk add --no-cache --virtual .builddeps git \
diff --git a/example/docker-compose-arm64.yml b/example/docker-compose-arm64.yml
index 7689c40..82d2ded 100644
--- a/example/docker-compose-arm64.yml
+++ b/example/docker-compose-arm64.yml
@@ -19,7 +19,7 @@ version: "3"
 
 services:
   apisix-dashboard:
-    image: apache/apisix-dashboard:3.0.0-alpine
+    image: apache/apisix-dashboard:3.0.1-alpine
     restart: always
     volumes:
       - ./dashboard_conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml
diff --git a/example/docker-compose.yml b/example/docker-compose.yml
index af61add..f35df59 100644
--- a/example/docker-compose.yml
+++ b/example/docker-compose.yml
@@ -19,7 +19,7 @@ version: "3"
 
 services:
   apisix-dashboard:
-    image: apache/apisix-dashboard:3.0.0-alpine
+    image: apache/apisix-dashboard:3.0.1-alpine
     restart: always
     volumes:
     - ./dashboard_conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml