edp-doc/docs/user-documentation/forgejo.md

69 lines
2 KiB
Markdown
Raw Normal View History

2024-12-18 13:43:10 +00:00
# Forgejo
2024-12-17 10:51:16 +00:00
2024-12-18 13:43:10 +00:00
In our EDP, we utilize Forgejo for Git hosting, Forgejo Registry for container image storage, and Forgejo Runner for [continuous integration (CI) workflows](ci-workflow.md). Here's a brief overview of these components and their roles.
2024-12-18 12:31:50 +00:00
2024-12-18 13:43:10 +00:00
---
2024-12-19 13:38:42 +00:00
## Main features
2024-12-18 12:31:50 +00:00
**Forgejo** is a Git server that provides version control for your code repositories. It offers:
2024-12-19 14:49:40 +00:00
- **💾 Code Hosting:**
Store and manage your source code repositories.
- **👥 Collaboration Tools:**
Features like pull requests, issue tracking, and code reviews to enhance teamwork.
- **✅ Git Actions:**
Native support for CI/CD workflows using Forgejo Actions.
2024-12-18 12:31:50 +00:00
Forgejo serves as the central hub for managing source code and related development activities.
2024-12-18 13:43:10 +00:00
---
2024-12-18 12:31:50 +00:00
## Forgejo Registry
**Forgejo Registry** is a container image registry integrated with Forgejo. It allows you to:
2024-12-19 14:49:40 +00:00
- **🐳 Store Docker Images:**
Save and manage container images for deployment.
- **📜 Version Control:**
Keep track of different versions of your container images.
- **⚙️ Integration with CI Workflows:**
Store images built by CI workflows for future deployment.
2024-12-18 12:31:50 +00:00
The Forgejo Registry simplifies the process of managing container images and ensures they are readily available for deployment.
2024-12-18 13:43:10 +00:00
---
2024-12-18 12:31:50 +00:00
## Forgejo Runner
**Forgejo Runner** is a tool used to execute CI/CD workflows defined in Forgejo Actions. It provides:
2024-12-19 14:16:21 +00:00
- **▶️ Pipeline Execution:**
Runs automated tasks such as building, testing, and deploying code.
- **⚙️ Integration with Forgejo:**
Seamless execution of workflows hosted on the Forgejo Git server.
- **⚒️ Image Building:**
Builds Docker images and pushes them to the Forgejo Registry.
2024-12-18 12:31:50 +00:00
Forgejo Runner ensures that your CI/CD processes run smoothly and consistently.
2024-12-18 13:43:10 +00:00
---
2024-12-18 12:31:50 +00:00
## 🔗 References
2024-12-18 16:41:01 +00:00
- [Forgejo Documentation & Community](https://forgejo.org/)
- [Forgejo Runner Guildes & Documentation](https://forgejo.org/docs/latest/admin/runner-installation/)
- [Forgejo Runner's Repository](https://code.forgejo.org/forgejo/runner)