Gitea Self Hosted Git Server image for ARMv7
2.2K
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.
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
| Parameter | Description |
|---|---|
-p 3000:3000 | Access the Gitea web interface on port 3000 |
-p 222:22 | SSH access via port 222 |
-v data:/data | Persistent storage for Gitea data |
-e TZ=... | Set the system TimeZone (e.g., Europe/Budapest) |
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:
| Date | Gitea Version | Notes |
|---|---|---|
| 2026.06.13 | 1.26.4 | Gitea 1.26.4 & Alpine 3.24.1 |
| 2025.12.19 | 1.25.3 | Updated Gitea to 1.25.3 |
| 2025.10.30 | 1.25.0 | Gitea 1.25.0 & Alpine 3.22.2 |
| 2025.02.19 | 1.23.4 | Gitea 1.23.4 & Alpine 3.21.3 |
| 2025.01.09 | 1.23.0 | Gitea 1.23.0 & Alpine 3.21.2 |
| 2024.10.22 | 1.22.x | Initial release |
This image is built for ARMv7 architecture and is fully compatible with:
Maintained by: atix0
Content type
Image
Digest
sha256:45f914c98…
Size
65.9 MB
Last updated
25 days ago
docker pull atix0/gitea:1.26.4