Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of the next version, still under development. See the latest release.

Installation from Package

Currently, the only supported method of installation on MacOS is Homebrew. Following the deployment from binary guide may work, but is not supported. To install Gitea via brew:

brew install gitea

Alpine Linux has Gitea in its community repository which follows the latest stable version.

Terminal window
apk add gitea

The rolling release distribution has Gitea in their official extra repository and package updates are provided with new Gitea releases.

Terminal window
pacman -S gitea

Arch Linux ARM provides packages for aarch64, armv7h and armv6h.

Terminal window
pacman -S gitea

The rolling release distribution has Gitea in their official community repository and package updates are provided with new Gitea releases.

Terminal window
emerge gitea -va

There is a Gitea Snap package which follows the latest stable version. Note: The Gitea snap package is strictly confined. Strictly confined snaps run in complete isolation, so some of the Gitea functionals may not work with the confinement

Terminal window
snap install gitea

OpenSUSE build service provides packages for openSUSE and SLE in the Development Software Configuration Management Repository

There is a Gitea package for Windows by Chocolatey.

Terminal window
choco install gitea

Or follow the deployment from binary guide.

A FreeBSD port www/gitea is available. To install the pre-built binary package:

pkg install gitea

For the most up to date version, or to build the port with custom options, install it from the port:

su -
cd /usr/ports/www/gitea
make install clean

The port uses the standard FreeBSD file system layout: config files are in /usr/local/etc/gitea, bundled templates, options, plugins and themes are in /usr/local/share/gitea, and a start script is in /usr/local/etc/rc.d/gitea.

To enable Gitea to run as a service, run sysrc gitea_enable=YES and start it with service gitea start.

Various other third-party packages of Gitea exist. To see a curated list, head over to awesome-gitea.

Do you know of an existing package that isn’t on the list? Send in a PR to get it added!