aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgsilvan <gsilvan@users.noreply.github.com>2020-11-18 00:51:22 +0100
committerGitHub <noreply@github.com>2020-11-18 01:51:22 +0200
commit76cdf3b7af33ae3cd16d8cae7390dc94c906e64a (patch)
tree05429930823fbdaa646bc1ca0ce15ce2d5ac255d
parent0615b668dcbdeb8819662f2532cd5843f427dbcc (diff)
downloadgitea-76cdf3b7af33ae3cd16d8cae7390dc94c906e64a.tar.gz
gitea-76cdf3b7af33ae3cd16d8cae7390dc94c906e64a.zip
Docs: Installation from package (#13607)
* add Arch Linux * add Arch Linux ARM * remove Debian There is no package in any of Debian's official repositories as of 17.11.2020 17:55 UTC. * shrink Alpine Linux * Update docs/content/doc/installation/from-package.en-us.md Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: techknowlogick <matti@mdranta.net>
-rw-r--r--docs/content/doc/installation/from-package.en-us.md27
1 files changed, 15 insertions, 12 deletions
diff --git a/docs/content/doc/installation/from-package.en-us.md b/docs/content/doc/installation/from-package.en-us.md
index 4601eb98b9..125664b88d 100644
--- a/docs/content/doc/installation/from-package.en-us.md
+++ b/docs/content/doc/installation/from-package.en-us.md
@@ -15,26 +15,29 @@ menu:
# Installation from package
-## Debian
+## Alpine Linux
-Although there is a package of Gitea in Debian's [contrib](https://wiki.debian.org/SourcesList),
-it is not supported directly by us.
+Alpine Linux has [Gitea](https://pkgs.alpinelinux.org/packages?name=gitea&branch=edge) in its community repository which follows the latest stable version.
-Unfortunately, the package is not maintained anymore and broken because of missing sources.
-Please follow the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide instead.
+```sh
+apk add gitea
+```
-Should the packages get updated and fixed, we will provide up-to-date installation instructions here.
+## Arch Linux
-## Alpine Linux
+The rolling release distribution has [Gitea](https://www.archlinux.org/packages/community/x86_64/gitea/) in their official community repository and package updates are provided with new Gitea releases.
-Alpine Linux has gitea in its community repository. It follows the latest stable version.
-for more information look at https://pkgs.alpinelinux.org/packages?name=gitea&branch=edge.
+```sh
+pacman -S gitea
+```
+
+## Arch Linux ARM
+
+Arch Linux ARM provides packages for [aarch64](https://archlinuxarm.org/packages/aarch64/gitea), [armv7h](https://archlinuxarm.org/packages/armv7h/gitea) and [armv6h](https://archlinuxarm.org/packages/armv6h/gitea).
-install as usual:
```sh
-apk add gitea
+pacman -S gitea
```
-config is found in **/etc/gitea/app.ini**
## Windows