From 0f3bc34f97c01e4c52965d6324a1a7d45437298a Mon Sep 17 00:00:00 2001 From: hello Date: Sat, 16 Mar 2024 15:07:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BA=AB=E4=BB=BD=E8=AE=A4?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/helloshop/jwt-bearer-authentication.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/notes/helloshop/jwt-bearer-authentication.md b/notes/helloshop/jwt-bearer-authentication.md index bf8d382..23ec109 100644 --- a/notes/helloshop/jwt-bearer-authentication.md +++ b/notes/helloshop/jwt-bearer-authentication.md @@ -64,4 +64,13 @@ builder.Services.AddAuthentication().AddJwtBearer().AddCustomJwtBearer(options = options.IssuerSigningKey = issuerSigningKey; options.SecurityAlgorithm = SecurityAlgorithms.HmacSha256; }); +``` + +## 在容器中运行 pgAdmin 管理工具 + +```shell + +docier pull dpage/pgadmin4 + +docker run --name pgadmin -e PGADMIN_DEFAULT_EMAIL=test@test.com -e PGADMIN_DEFAULT_PASSWORD=test -e TZ=Asia/Shanghai -d -p 5050:80 dpage/pgadmin4 ``` \ No newline at end of file