diff options
author | Stephen J. Fuhry <fuhrysteve@gmail.com> | 2022-04-16 11:59:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 11:59:56 -0400 |
commit | 695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3 (patch) | |
tree | f53e594f4838acd9f90934d64ac0e20e186c5b0a /docs/content | |
parent | deffe9e5258bac233472b57166be17bc48a527c9 (diff) | |
download | gitea-695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3.tar.gz gitea-695c4b4b0ecb65c87fd7e9c8f77e612b99b8abe3.zip |
upgrade postgres refrence to 14 (#19416)
Diffstat (limited to 'docs/content')
-rw-r--r-- | docs/content/doc/installation/with-docker-rootless.en-us.md | 2 | ||||
-rw-r--r-- | docs/content/doc/installation/with-docker.en-us.md | 2 | ||||
-rw-r--r-- | docs/content/doc/installation/with-docker.zh-cn.md | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/doc/installation/with-docker-rootless.en-us.md b/docs/content/doc/installation/with-docker-rootless.en-us.md index e3de969122..634e08a72e 100644 --- a/docs/content/doc/installation/with-docker-rootless.en-us.md +++ b/docs/content/doc/installation/with-docker-rootless.en-us.md @@ -147,7 +147,7 @@ services: + - db + + db: -+ image: postgres:13 ++ image: postgres:14 + restart: always + environment: + - POSTGRES_USER=gitea diff --git a/docs/content/doc/installation/with-docker.en-us.md b/docs/content/doc/installation/with-docker.en-us.md index 6322e0b953..66e596ea4d 100644 --- a/docs/content/doc/installation/with-docker.en-us.md +++ b/docs/content/doc/installation/with-docker.en-us.md @@ -187,7 +187,7 @@ services: + - db + + db: -+ image: postgres:13 ++ image: postgres:14 + restart: always + environment: + - POSTGRES_USER=gitea diff --git a/docs/content/doc/installation/with-docker.zh-cn.md b/docs/content/doc/installation/with-docker.zh-cn.md index 8461951f72..77577736f2 100644 --- a/docs/content/doc/installation/with-docker.zh-cn.md +++ b/docs/content/doc/installation/with-docker.zh-cn.md @@ -172,7 +172,7 @@ services: + - db + + db: -+ image: postgres:13 ++ image: postgres:14 + restart: always + environment: + - POSTGRES_USER=gitea |