Skip to content

dokku/dokku-orb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dokku orb

This orb provides the ability to deploy applications to dokku as part of your CI/CD pipelines.

CircleCI Build Status Orb Version Badge GitHub License CircleCI Community

How to use

Step 1 - Add a deploy key to CircleCI

The private key for the dokku user you wish to use for deploys will need to be added to CircleCI. See the docs for more on how to do this. The fingerprint for this key is required in step 2.

Step 2 - Use the commands/jobs in your project as necessary

---
version: 2.1
orbs:
  dokku: dokku/[email protected]
workflows:
  deploy:
    jobs:
      - checkout
      - add_ssh_keys:
          fingerprints:
            - "$SSH_KEY_FINGERPRINT"
      - dokku/deploy:
          git-remote-url: ssh:https://[email protected]:22/appname

See more examples on the CircleCI Orb Registry Page.

Resources

CircleCI Orb Registry Page - The official registry page of this orb for all versions, executors, commands, and jobs described. CircleCI Orb Docs - Docs for using and creating CircleCI Orbs.

How to Contribute

We welcome issues to and pull requests against this repository!