atix0/gitea

By atix0

Updated 10 days ago

Gitea Self Hosted Git Server image for ARMv7

Image
Content Management System
Languages & Frameworks
Developer Tools

93

Gitea 1.23.4 Self Hosted Git Server image for ARMv7

This Docker image is an ARMv7 version of the Gitea git management system. It’s ideal for Raspberry Pi or other ARMv7-based devices.

Key Features

  • Lightweight and low resource usage
  • Optimized for ARMv7 architecture
  • Supports full Gitea functionality

Usage

Quick Start

The following command will start a Gitea container with default settings:

docker run -d --name gitea \
  -p 3000:3000 \
  -p 222:22 \
  -v gitea_data:/data \
  -e TZ=Europe/Budapest \
  atix0/gitea:latest

Parameters:

  • -p 3000:3000: Makes the Gitea web interface accessible on port 3000
  • -p 222:22: SSH access via port 222
  • -v ./gitea_data:/data: Stores Gitea data in a Docker volume
  • -e TZ=Europe/Budapest: Set TimeZone

Example Docker Compose Configuration

services:
  gitea:
    image: atix0/gitea:latest
    restart: unless-stopped
    environment:
      - TZ=Europe/Budapest
    volumes:
      - ./atix0_gitea/data:/data
    ports:
      - 3000:3000
      - 2200:22

Supported Platform

This image is built for ARMv7 architecture and is compatible with Raspberry Pi 2/3/4 or other ARMv7-based devices.

Version History

2025.02.19

  • Gitea updated to 1.23.4
  • Alpine base updated to 3.21.3

2025.02.06

  • Gitea updated to 1.23.3

2025.02.5

  • Gitea updated to 1.23.2

2025.01.10

  • Gitea updated to 1.23.1

2025.01.09

  • Gitea updated to 1.23.0
  • Alpine base updated to 3.21.2

2024.12.13

  • Gitea updated to 1.22.6
  • Alpine base updated to 3.21

2024.12.12

  • Gitea updated to 1.22.5

2024.11.28

  • Gitea updated to 1.22.4

2024.10.22

  • First Version

Docker Pull Command

docker pull atix0/gitea