summaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
authorStephen J. Fuhry <fuhrysteve@gmail.com>2022-04-16 11:59:56 -0400
committerGitHub <noreply@github.com>2022-04-16 11:59:56 -0400
commit695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3 (patch)
treef53e594f4838acd9f90934d64ac0e20e186c5b0a /integrations
parentdeffe9e5258bac233472b57166be17bc48a527c9 (diff)
downloadgitea-695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3.tar.gz
gitea-695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3.zip
upgrade postgres refrence to 14 (#19416)
Diffstat (limited to 'integrations')
-rw-r--r--integrations/README_ZH.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/README_ZH.md b/integrations/README_ZH.md
index 39639f9b89..eebb14de73 100644
--- a/integrations/README_ZH.md
+++ b/integrations/README_ZH.md
@@ -36,7 +36,7 @@ TEST_MYSQL_HOST=localhost:3306 TEST_MYSQL_DBNAME=test TEST_MYSQL_USERNAME=root T
## 如何使用 pgsql 数据库进行集成测试
同上,首先在 docker 容器里部署一个 pgsql 数据库
```
-docker run -e "POSTGRES_DB=test" -p 5432:5432 --rm --name pgsql postgres:13 #(just ctrl-c to stop db and clean the container)
+docker run -e "POSTGRES_DB=test" -p 5432:5432 --rm --name pgsql postgres:14 #(just ctrl-c to stop db and clean the container)
```
之后便可以基于这个数据库进行集成测试
```