Files
compose-anything/src/gitea
Sun-ZhenXing aeddac52bf Update MinerU, Gitea, InfluxDB, Phoenix, and Selenium configurations
- Bump MinerU version from 2.7.1 to 2.7.2 in .env.example, Dockerfile, README files, and docker-compose.yaml.
- Update Gitea version from 1.25.2-rootless to 1.25.4-rootless in .env.example and docker-compose.yaml.
- Add InfluxDB configuration files including .env.example, README.md, README.zh.md, and docker-compose.yaml with version 2.8.0.
- Bump Phoenix version from 12.28.1-nonroot to 12.31.2-nonroot in .env.example and docker-compose.yaml, and update README files.
- Introduce Selenium standalone configuration with version 144.0-20260120, including .env.example, README.md, README.zh.md, and docker-compose.yaml.
2026-01-25 22:59:55 +08:00
..
2025-09-24 14:16:10 +08:00
2025-09-24 14:16:10 +08:00

Gitea

English | 中文

This service sets up a Gitea service.

Services

  • server: The Gitea application service.
  • db: The PostgreSQL database service.

Initial Setup

On the initial setup page, you need to fill in the database information:

  • Database Type: PostgreSQL
  • Host: db:5432
  • User: gitea
  • Password: gitea (default)
  • Database Name: gitea

The first registered user will have administrator privileges.

Configuration

You can configure the basic information of Gitea through the ./config/app.ini file. For example, you can disable the registration function with the following configuration:

[service]
DISABLE_REGISTRATION = true

Environment Variables

  • POSTGRES_USER: The username for the PostgreSQL database, default is gitea.
  • POSTGRES_PASSWORD: The password for the PostgreSQL database, default is gitea.
  • POSTGRES_DB: The name of the PostgreSQL database, default is gitea.

Volumes

  • data: A volume for storing Gitea data.
  • config: A volume for storing Gitea configuration.
  • postgres: A volume for storing PostgreSQL data.