[PR #283] [MERGED] Update Gitea to latest version with support for SQLite, MySQL, and PostgreSQL #335

Closed
opened 2025-11-22 20:35:38 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Dokploy/templates/pull/283
Author: @jaainil
Created: 8/14/2025
Status: Merged
Merged: 8/23/2025
Merged by: @Siumauricio

Base: mainHead: update/gitea-latest-multi-db-sqlite-mysql-postgres


📝 Commits (10+)

  • 54d9020 Update Gitea to latest version with support for SQLite, MySQL, and PostgreSQL
  • 1c1c3b6 Update meta.json
  • 161ba13 Update meta.json
  • 50e7bd6 Update meta.json
  • acc7a42 Update meta.json
  • d8db323 Update meta.json
  • 71ca5a5 Update meta.json
  • f237072 Update meta.json
  • 65dac5e Remove Booklore and Statping-NG entries from meta.json
  • 4bf0548 The meta.json glow-up nobody saw coming (#281)

📊 Changes

12 files changed (+234 additions, -62 deletions)

View changed files

blueprints/gitea-mysql/docker-compose.yml (+44 -0)
📝 blueprints/gitea-mysql/gitea.png (+0 -0)
blueprints/gitea-mysql/template.toml (+23 -0)
blueprints/gitea-postgres/docker-compose.yml (+42 -0)
blueprints/gitea-postgres/gitea.png (+0 -0)
blueprints/gitea-postgres/template.toml (+21 -0)
blueprints/gitea-sqlite/docker-compose.yml (+25 -0)
blueprints/gitea-sqlite/gitea.png (+0 -0)
blueprints/gitea-sqlite/template.toml (+23 -0)
blueprints/gitea/docker-compose.yml (+0 -35)
blueprints/gitea/template.toml (+0 -11)
📝 meta.json (+56 -16)

📄 Description

What is this PR about?

New PR of Gitea template upgrade.

This update introduces three new templates for Gitea v1.24.4, each configured with a different database backend:

  • SQLite: Lightweight, single-container setup for quick deployments.
  • MySQL: Production-ready configuration using MySQL 8.
  • PostgreSQL: Scalable setup with PostgreSQL 14.

Each template includes:

  • Docker Compose files with health checks and environment variables.
  • template.toml configurations for domain, environment, and mounts.
  • Updated metadata with version bump from 1.22.3 → 1.24.4.

Checklist

Before submitting this PR, please make sure that:

  • I have read the suggestions in the README.md
  • I have tested the template in my instance, so the maintainers don't spend time trying to figure out what's wrong.
  • I have added tests that demonstrate that my correction works or that my new feature works.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Dokploy/templates/pull/283 **Author:** [@jaainil](https://github.com/jaainil) **Created:** 8/14/2025 **Status:** ✅ Merged **Merged:** 8/23/2025 **Merged by:** [@Siumauricio](https://github.com/Siumauricio) **Base:** `main` ← **Head:** `update/gitea-latest-multi-db-sqlite-mysql-postgres` --- ### 📝 Commits (10+) - [`54d9020`](https://github.com/Dokploy/templates/commit/54d9020b1ac256f4dea03e46f5e1c4b9d78aaa32) Update Gitea to latest version with support for SQLite, MySQL, and PostgreSQL - [`1c1c3b6`](https://github.com/Dokploy/templates/commit/1c1c3b638ca31d1e5622e3d7fc7cd5e7aa0282c8) Update meta.json - [`161ba13`](https://github.com/Dokploy/templates/commit/161ba138bd95b17212efbd5e5305d22e6b35cf7c) Update meta.json - [`50e7bd6`](https://github.com/Dokploy/templates/commit/50e7bd6f46432f5f19929c16848ef713934cefa1) Update meta.json - [`acc7a42`](https://github.com/Dokploy/templates/commit/acc7a4288c59789964e8c0e6ce0dd5b577a93aa2) Update meta.json - [`d8db323`](https://github.com/Dokploy/templates/commit/d8db3237ba84848b91f237ba226fda1e9bb52f34) Update meta.json - [`71ca5a5`](https://github.com/Dokploy/templates/commit/71ca5a5555fa3a29c6057442a266113732b56813) Update meta.json - [`f237072`](https://github.com/Dokploy/templates/commit/f237072139a6453590726009db700ddd484028db) Update meta.json - [`65dac5e`](https://github.com/Dokploy/templates/commit/65dac5e4e95c7cbe226a2930ddac1a1f408221c3) Remove Booklore and Statping-NG entries from meta.json - [`4bf0548`](https://github.com/Dokploy/templates/commit/4bf0548e0054427900e3c9388427709fbd308ae9) The meta.json glow-up nobody saw coming (#281) ### 📊 Changes **12 files changed** (+234 additions, -62 deletions) <details> <summary>View changed files</summary> ➕ `blueprints/gitea-mysql/docker-compose.yml` (+44 -0) 📝 `blueprints/gitea-mysql/gitea.png` (+0 -0) ➕ `blueprints/gitea-mysql/template.toml` (+23 -0) ➕ `blueprints/gitea-postgres/docker-compose.yml` (+42 -0) ➕ `blueprints/gitea-postgres/gitea.png` (+0 -0) ➕ `blueprints/gitea-postgres/template.toml` (+21 -0) ➕ `blueprints/gitea-sqlite/docker-compose.yml` (+25 -0) ➕ `blueprints/gitea-sqlite/gitea.png` (+0 -0) ➕ `blueprints/gitea-sqlite/template.toml` (+23 -0) ➖ `blueprints/gitea/docker-compose.yml` (+0 -35) ➖ `blueprints/gitea/template.toml` (+0 -11) 📝 `meta.json` (+56 -16) </details> ### 📄 Description ## What is this PR about? New PR of Gitea template upgrade. This update introduces three new templates for Gitea v1.24.4, each configured with a different database backend: - **SQLite**: Lightweight, single-container setup for quick deployments. - **MySQL**: Production-ready configuration using MySQL 8. - **PostgreSQL**: Scalable setup with PostgreSQL 14. Each template includes: - Docker Compose files with health checks and environment variables. - `template.toml` configurations for domain, environment, and mounts. - Updated metadata with version bump from 1.22.3 → 1.24.4. ## Checklist Before submitting this PR, please make sure that: - [x] I have read the suggestions in the [README.md](https://github.com/Dokploy/templates?tab=readme-ov-file#general-suggestions-when-creating-a-template) - [x] I have tested the template in my instance, so the maintainers don't spend time trying to figure out what's wrong. - [x] I have added tests that demonstrate that my correction works or that my new feature works. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-22 20:35:38 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/templates#335