atix0/gitea

By atix0

Updated 25 days ago

Gitea Self Hosted Git Server image for ARMv7

Image
Languages & frameworks
Developer tools
Content management system
1

2.2K

atix0/gitea repository overview

🏗️ Gitea Self-Hosted Git Server (ARMv7)

Docker Pulls Docker Image Size Architecture

This Docker image is a lightweight, ARMv7-optimized version of the Gitea git management system. It is specifically built for low-power devices like the Raspberry Pi 2/3/4 and other ARMv7-based hardware.


✨ Key Features

  • 🚀 Lightweight: Low resource usage, ideal for SBC devices.
  • 🛠️ Full Featured: Supports the complete Gitea functionality.
  • 📦 Optimized: Specifically compiled for the ARMv7 architecture.

🚀 Quick Start

Launch the Gitea container with a single command:

docker run -d --name gitea \
  -p 3000:3000 \
  -p 222:22 \
  -v gitea_data:/data \
  -e TZ=Europe/Budapest \
  atix0/gitea:latest
⚙️ Parameters:
ParameterDescription
-p 3000:3000Access the Gitea web interface on port 3000
-p 222:22SSH access via port 222
-v data:/dataPersistent storage for Gitea data
-e TZ=...Set the system TimeZone (e.g., Europe/Budapest)

🛠️ Docker Compose Configuration

For a more robust setup, we recommend using docker-compose.yml:

services:
  gitea:
    image: atix0/gitea:latest
    container_name: gitea
    restart: unless-stopped
    environment:
      - TZ=Europe/Budapest
      - USER_UID=1000
      - USER_GID=1000
    volumes:
      - data:/data
    ports:
      - "3000:3000"
      - "2200:22"

volumes:
  data:

📋 Version History (Highlights)

DateGitea VersionNotes
2026.06.131.26.4Gitea 1.26.4 & Alpine 3.24.1
2025.12.191.25.3Updated Gitea to 1.25.3
2025.10.301.25.0Gitea 1.25.0 & Alpine 3.22.2
2025.02.191.23.4Gitea 1.23.4 & Alpine 3.21.3
2025.01.091.23.0Gitea 1.23.0 & Alpine 3.21.2
2024.10.221.22.xInitial release

📱 Supported Platforms

This image is built for ARMv7 architecture and is fully compatible with:

  • Raspberry Pi 2 / 3 / 4
  • Other ARMv7-based devices and NAS systems

Maintained by: atix0

Tag summary

Content type

Image

Digest

sha256:45f914c98

Size

65.9 MB

Last updated

25 days ago

docker pull atix0/gitea:1.26.4