loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix `Installation from package` doc (#27459)

Fix the title size and add notes to the Gitea snap package.
Related issue #27424, #27423, #27422, #27420

authored by

Nanguan Lin and committed by
GitHub
7014ee0e f2b2608a

+15 -12
+15 -12
docs/content/installation/from-package.en-us.md
··· 15 15 identifier: "install-from-package" 16 16 --- 17 17 18 - # Official packages 18 + # Installation from Package 19 19 20 - ## macOS 20 + ## Official packages 21 + 22 + ### macOS 21 23 22 24 Currently, the only supported method of installation on MacOS is [Homebrew](http://brew.sh/). 23 25 Following the [deployment from binary](installation/from-binary.md) guide may work, ··· 27 29 brew install gitea 28 30 ``` 29 31 30 - # Unofficial packages 32 + ## Unofficial packages 31 33 32 - ## Alpine Linux 34 + ### Alpine Linux 33 35 34 36 Alpine Linux has [Gitea](https://pkgs.alpinelinux.org/packages?name=gitea&branch=edge) in its community repository which follows the latest stable version. 35 37 ··· 37 39 apk add gitea 38 40 ``` 39 41 40 - ## Arch Linux 42 + ### Arch Linux 41 43 42 44 The rolling release distribution has [Gitea](https://www.archlinux.org/packages/extra/x86_64/gitea/) in their official extra repository and package updates are provided with new Gitea releases. 43 45 ··· 45 47 pacman -S gitea 46 48 ``` 47 49 48 - ## Arch Linux ARM 50 + ### Arch Linux ARM 49 51 50 52 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). 51 53 ··· 53 55 pacman -S gitea 54 56 ``` 55 57 56 - ## Gentoo Linux 58 + ### Gentoo Linux 57 59 58 60 The rolling release distribution has [Gitea](https://packages.gentoo.org/packages/www-apps/gitea) in their official community repository and package updates are provided with new Gitea releases. 59 61 ··· 61 63 emerge gitea -va 62 64 ``` 63 65 64 - ## Canonical Snap 66 + ### Canonical Snap 65 67 66 68 There is a [Gitea Snap](https://snapcraft.io/gitea) package which follows the latest stable version. 69 + *Note: The Gitea snap package is [strictly confined](https://snapcraft.io/docs/snap-confinement). Strictly confined snaps run in complete isolation, so some of the Gitea functionals may not work with the confinement* 67 70 68 71 ```sh 69 72 snap install gitea 70 73 ``` 71 74 72 - ## SUSE and openSUSE 75 + ### SUSE and openSUSE 73 76 74 77 OpenSUSE build service provides packages for [openSUSE and SLE](https://software.opensuse.org/download/package?package=gitea&project=devel%3Atools%3Ascm) 75 78 in the Development Software Configuration Management Repository 76 79 77 - ## Windows 80 + ### Windows 78 81 79 82 There is a [Gitea](https://chocolatey.org/packages/gitea) package for Windows by [Chocolatey](https://chocolatey.org/). 80 83 ··· 84 87 85 88 Or follow the [deployment from binary](installation/from-binary.md) guide. 86 89 87 - ## FreeBSD 90 + ### FreeBSD 88 91 89 92 A FreeBSD port `www/gitea` is available. To install the pre-built binary package: 90 93 ··· 107 110 108 111 To enable Gitea to run as a service, run `sysrc gitea_enable=YES` and start it with `service gitea start`. 109 112 110 - ## Others 113 + ### Others 111 114 112 115 Various other third-party packages of Gitea exist. 113 116 To see a curated list, head over to [awesome-gitea](https://gitea.com/gitea/awesome-gitea/src/branch/master/README.md#user-content-packages).