atix0/gitea
Gitea Self Hosted Git Server image for ARMv7
93
This Docker image is an ARMv7 version of the Gitea git management system. It’s ideal for Raspberry Pi or other ARMv7-based devices.
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
services:
gitea:
image: atix0/gitea:latest
restart: unless-stopped
environment:
- TZ=Europe/Budapest
volumes:
- ./atix0_gitea/data:/data
ports:
- 3000:3000
- 2200:22
This image is built for ARMv7 architecture and is compatible with Raspberry Pi 2/3/4 or other ARMv7-based devices.
2025.02.19
2025.02.06
2025.02.5
2025.01.10
2025.01.09
2024.12.13
2024.12.12
2024.11.28
2024.10.22
docker pull atix0/gitea