diff options
author | Patrick Schratz <patrick.schratz@gmail.com> | 2021-05-22 00:11:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 18:11:48 -0400 |
commit | d957a1569a37e97c1f2b995168a370a83208e233 (patch) | |
tree | 4f3f4d36c4aed979dca3e85ffe16a2911c3b1357 /docs | |
parent | fec832402625d856aba0cc2fbdec9e773469ad87 (diff) | |
download | gitea-d957a1569a37e97c1f2b995168a370a83208e233.tar.gz gitea-d957a1569a37e97c1f2b995168a370a83208e233.zip |
Bump `postgres` and `mysql` versions (#15710)
* bump postgres and mysql DB versions
* posgres test against v10
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/installation/with-docker-rootless.en-us.md | 4 | ||||
-rw-r--r-- | docs/content/doc/installation/with-docker.en-us.md | 4 | ||||
-rw-r--r-- | docs/content/doc/installation/with-docker.zh-cn.md | 4 |
3 files changed, 6 insertions, 6 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 3449c191d6..53eaed3bb1 100644 --- a/docs/content/doc/installation/with-docker-rootless.en-us.md +++ b/docs/content/doc/installation/with-docker-rootless.en-us.md @@ -107,7 +107,7 @@ services: + - db + + db: -+ image: mysql:5.7 ++ image: mysql:8 + restart: always + environment: + - MYSQL_ROOT_PASSWORD=gitea @@ -148,7 +148,7 @@ services: + - db + + db: -+ image: postgres:9.6 ++ image: postgres:13 + 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 83f82d85d6..06917b5d8a 100644 --- a/docs/content/doc/installation/with-docker.en-us.md +++ b/docs/content/doc/installation/with-docker.en-us.md @@ -137,7 +137,7 @@ services: + - db + + db: -+ image: mysql:5.7 ++ image: mysql:8 + restart: always + environment: + - MYSQL_ROOT_PASSWORD=gitea @@ -188,7 +188,7 @@ services: + - db + + db: -+ image: postgres:9.6 ++ image: postgres:13 + 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 d32b774c20..f823e0d749 100644 --- a/docs/content/doc/installation/with-docker.zh-cn.md +++ b/docs/content/doc/installation/with-docker.zh-cn.md @@ -122,7 +122,7 @@ services: + - db + + db: -+ image: mysql:5.7 ++ image: mysql:8 + restart: always + environment: + - MYSQL_ROOT_PASSWORD=gitea @@ -172,7 +172,7 @@ services: + - db + + db: -+ image: postgres:9.6 ++ image: postgres:13 + restart: always + environment: + - POSTGRES_USER=gitea |