Gitea
Configure Gitea repositories for deployments. This includes setting up access tokens, repository names, and branches.
Dokploy offers a way to connect your Gitea Repository to your Dokploy panel, you can use Organizations or personal accounts.
Go to Git
and select Gitea
as the source, then you can use the following options:
- Application ID: Select the application ID that you want to connect to Dokploy.
- Personal Secret: Select the secret that you want to connect to Dokploy.
- Organization Name(Optional): Select the organization name that you want to connect to Dokploy (Ideal for Gitea Organizations).
Follow the steps to connect your Gitea account to Dokploy:
- Go to your Gitea instance's settings (e.g.,
https://gitea.com/user/settings/applications
) and scroll to theCreate a new OAuth2 Application
. - Set Application Name: e.g.,
Dokploy-Gitea-App
. Choose any name you want. - Redirect URI: Copy the
Redirect URI
from Dokploy. e.g.,https://dokploy.com/api/providers/gitea/callback
. - Check Confidential Client
- Click on
Create Application
. - Copy the
Client ID
andClient Secret
from Gitea and paste them in Dokploy'sGitea
Modal section. - Click on
Configure Gitea App
. - That operation will save the Gitea Provider configuration and redirect you to Gitia to authorize Dokploy to have access.
- Click on
Authorize
. - You will be redirected to the
Git
section of Dokploy. - Now you can use the repositories from your Gitea Account in
Applications
orDocker Compose
services.
Dokploy doesn't support Gitea Automatic deployments on each push you make to your repository.
Setup Automatic Deployments
You can configure automatic deployments in Dokploy for the Following Services:
- Applications
- Docker Compose
The steps are the same for both services.
- Go to either
Applications
orDocker Compose
and go toDeployments
Tab. - Copy the
Webhook URL
. - Go to your Gitea Account and select the repository.
- In the left menu, select
Settings
and thenWebhooks
. - Click on
Add Webhook
. - Set the
URL
to the one you copied in the previous step. - In the Trigger section, select
Push Events
. - Click on
Add Webhook
. - Click on
Save
. - Now you have automatic deployments enabled for the selected repository.
Clarification on Automatic Deployments
By default, Dokploy will automatically deploy your application on the Branch you have selected.
e.g., Let's suppose you have an application
in this way:
Repository: my-app
Branch: feature
If you try to make a push on another branch e.g., main
, Dokploy will not automatically deploy your application, because
your application has selected feature
as the Branch.
In the case you want to have multiple applications in the same repository, e.g., (development, staging, production), you can create 3 Applications
in Dokploy
and select the branch in each of them.
This is very useful if you want to have multiple environments for the same application.