diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-07-14 13:08:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 18:08:43 +0100 |
commit | e180456983e4267e8a1a37088775b5d410900635 (patch) | |
tree | 4a46313b62ca83540dba9295d2cea2767d171937 /docs/content/doc/installation/with-docker.en-us.md | |
parent | 14b6257160910ea5358acee31fd526c1dad77236 (diff) | |
download | gitea-e180456983e4267e8a1a37088775b5d410900635.tar.gz gitea-e180456983e4267e8a1a37088775b5d410900635.zip |
Change docker tag logic (#16421)
* Change docker logic
* Apply suggestions from code review
Co-authored-by: Kyle D. <kdumontnu@gmail.com>
* docs
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: Kyle D. <kdumontnu@gmail.com>
Diffstat (limited to 'docs/content/doc/installation/with-docker.en-us.md')
-rw-r--r-- | docs/content/doc/installation/with-docker.en-us.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/content/doc/installation/with-docker.en-us.md b/docs/content/doc/installation/with-docker.en-us.md index 06917b5d8a..3c51852fba 100644 --- a/docs/content/doc/installation/with-docker.en-us.md +++ b/docs/content/doc/installation/with-docker.en-us.md @@ -34,8 +34,7 @@ image as a service. Since there is no database available, one can be initialized Create a directory like `gitea` and paste the following content into a file named `docker-compose.yml`. Note that the volume should be owned by the user/group with the UID/GID specified in the config file. If you don't give the volume correct permissions, the container may not start. -Also be aware that the tag `:latest` will install the current development version. -For a stable release you can use `:1` or specify a certain release like `:{{< version >}}`. +For a stable release you can use `:latest`, `:1` or specify a certain release like `:{{< version >}}`, but if you'd like to use the latest development version of Gitea then you could use the `:dev` tag. ```yaml version: "3" |