2017-11-27 03:14:32 +05:30
|
|
|
---
|
|
|
|
date: "2016-12-01T16:00:00+02:00"
|
|
|
|
title: "Installation from package"
|
|
|
|
slug: "install-from-package"
|
|
|
|
weight: 10
|
|
|
|
toc: true
|
|
|
|
draft: false
|
|
|
|
menu:
|
|
|
|
sidebar:
|
|
|
|
parent: "installation"
|
|
|
|
name: "From package"
|
|
|
|
weight: 20
|
|
|
|
identifier: "install-from-package"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Installation from package
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
## Debian
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2018-06-05 18:54:52 +05:30
|
|
|
Although there is a package of Gitea in Debian's [contrib](https://wiki.debian.org/SourcesList),
|
|
|
|
it is not supported directly by us.
|
2018-01-09 04:18:42 +05:30
|
|
|
|
2019-03-10 02:45:45 +05:30
|
|
|
Unfortunately, the package is not maintained anymore and broken because of missing sources.
|
2018-06-05 18:54:52 +05:30
|
|
|
Please follow the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide instead.
|
2018-01-09 04:18:42 +05:30
|
|
|
|
2018-06-05 18:54:52 +05:30
|
|
|
Should the packages get updated and fixed, we will provide up-to-date installation instructions here.
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2020-05-17 16:39:56 +05:30
|
|
|
## Alpine Linux
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
install as usual:
|
|
|
|
```sh
|
|
|
|
apk add gitea
|
|
|
|
```
|
|
|
|
config is found in **/etc/gitea/app.ini**
|
|
|
|
|
2017-11-27 03:14:32 +05:30
|
|
|
## Windows
|
|
|
|
|
2020-05-25 00:47:33 +05:30
|
|
|
There is a [Gitea](https://chocolatey.org/packages/gitea) package for Windows by [Chocolatey](https://chocolatey.org/).
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2020-05-25 00:47:33 +05:30
|
|
|
```sh
|
|
|
|
choco install gitea
|
|
|
|
```
|
|
|
|
|
|
|
|
Or follow the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide.
|
2017-11-27 03:14:32 +05:30
|
|
|
## macOS
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
Currently, the only supported method of installation on MacOS is [Homebrew](http://brew.sh/).
|
|
|
|
Following the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide may work,
|
|
|
|
but is not supported. To install Gitea via `brew`:
|
2017-11-27 03:14:32 +05:30
|
|
|
|
|
|
|
```
|
2020-05-12 18:21:41 +05:30
|
|
|
brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea
|
2017-11-27 03:14:32 +05:30
|
|
|
brew install gitea
|
|
|
|
```
|
|
|
|
|
|
|
|
## FreeBSD
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
A FreeBSD port `www/gitea` is available. To install the pre-built binary package:
|
2017-11-27 03:14:32 +05:30
|
|
|
|
|
|
|
```
|
|
|
|
pkg install gitea
|
|
|
|
```
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
For the most up to date version, or to build the port with custom options,
|
|
|
|
[install it from the port](https://www.freebsd.org/doc/handbook/ports-using.html):
|
2017-11-27 03:14:32 +05:30
|
|
|
|
|
|
|
```
|
|
|
|
su -
|
|
|
|
cd /usr/ports/www/gitea
|
|
|
|
make install clean
|
|
|
|
```
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
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`.
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
To enable Gitea to run as a service, run `sysrc gitea_enable=YES` and start it with `service gitea start`.
|
2018-09-15 11:58:53 +05:30
|
|
|
|
|
|
|
## Cloudron
|
|
|
|
|
2020-06-12 00:08:26 +05:30
|
|
|
Gitea is available as a 1-click install on [Cloudron](https://cloudron.io).
|
2018-09-15 11:58:53 +05:30
|
|
|
Cloudron makes it easy to run apps like Gitea on your server and keep them up-to-date and secure.
|
|
|
|
|
|
|
|
[![Install](https://cloudron.io/img/button.svg)](https://cloudron.io/button.html?app=io.gitea.cloudronapp)
|
|
|
|
|
|
|
|
The Gitea package is maintained [here](https://git.cloudron.io/cloudron/gitea-app).
|
|
|
|
|
2020-06-12 00:08:26 +05:30
|
|
|
There is a [demo instance](https://my.demo.cloudron.io) (username: cloudron password: cloudron) where
|
2018-09-15 11:58:53 +05:30
|
|
|
you can experiment with running Gitea.
|
|
|
|
|
2020-05-14 04:28:49 +05:30
|
|
|
## Third-party
|
|
|
|
|
|
|
|
Various other third-party packages of Gitea exist.
|
|
|
|
To see a curated list, head over to [awesome-gitea](https://gitea.com/gitea/awesome-gitea/src/branch/master/README.md#user-content-packages).
|
|
|
|
|
|
|
|
Do you know of an existing package that isn't on the list? Send in a PR to get it added!
|