diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-11-19 11:36:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 11:36:48 -0500 |
commit | 64bd5f4c66130984c082c740e8a8fdcf08def2ac (patch) | |
tree | 0e5c001f9cf8f53dffe35087441bd2478875b9df | |
parent | ad2a288622c7bbf53b8670e136e2e1418331b121 (diff) | |
download | gitea-64bd5f4c66130984c082c740e8a8fdcf08def2ac.tar.gz gitea-64bd5f4c66130984c082c740e8a8fdcf08def2ac.zip |
specific version in docker compose (#13644)
* specific version in docker compose
fix #13643
* update latest version
-rw-r--r-- | docs/config.yaml | 2 | ||||
-rw-r--r-- | docs/content/doc/installation/with-docker.en-us.md | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/config.yaml b/docs/config.yaml index 2bd0add4b9..c8d6bff530 100644 --- a/docs/config.yaml +++ b/docs/config.yaml @@ -18,7 +18,7 @@ params: description: Git with a cup of tea author: The Gitea Authors website: https://docs.gitea.io - version: 1.12.5 + version: 1.12.6 minGoVersion: 1.13 goVersion: 1.15 minNodeVersion: 10.13 diff --git a/docs/content/doc/installation/with-docker.en-us.md b/docs/content/doc/installation/with-docker.en-us.md index 8773e34872..7a9e3cde77 100644 --- a/docs/content/doc/installation/with-docker.en-us.md +++ b/docs/content/doc/installation/with-docker.en-us.md @@ -42,7 +42,7 @@ networks: services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea environment: - USER_UID=1000 @@ -74,7 +74,7 @@ networks: services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea environment: - USER_UID=1000 @@ -107,7 +107,7 @@ networks: services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea environment: - USER_UID=1000 @@ -158,7 +158,7 @@ networks: services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea environment: - USER_UID=1000 @@ -214,7 +214,7 @@ networks: + services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea restart: always networks: @@ -315,7 +315,7 @@ version: "3" services: server: - image: gitea/gitea:latest + image: gitea/gitea:{{< version >}} container_name: gitea environment: - USER_UID=1000 |