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