Skip to content

jmischler72/dokploy-deploy-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Dokploy Deploy Action

This repository contains GitHub Actions for triggering deployments of applications in Dokploy. This is useful if you want to trigger it after a build/push of your docker image in your CI

Features

  • Trigger deployment on Dokploy
  • Easy integration with GitHub workflows

Usage

To use these actions in your GitHub workflow, add the following to your .github/workflows/deploy.yml file:

name: Deploy application

on:
  push:
    branches:
      - main

jobs:
  dokploy_deploy:
    uses: jmischler72/dokploy-deploy-actions@main
    with:
      PROJECT_NAME: project-name
      APPLICATION_NAME: application-name
      DOKPLOY_HOST: ${{ secrets.DOKPLOY_HOST }}
      DOKPLOY_TOKEN: ${{ secrets.DOKPLOY_TOKEN }}
    

Inputs

  • PROJECT_NAME: The name of the project in which the application you want to deploy is in
  • APPLICATION_NAME: The name of the application you want to deploy
  • DOKPLOY_HOST: The host ip or domain of your dokploy instance.
  • DOKPLOY_TOKEN: Create an API token in your profile settings on Dokploy

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published