Skip to content

Commit

Permalink
doc(docker): add command and Dockerfile to run Kestra with a custom p…
Browse files Browse the repository at this point in the history
…lugin
  • Loading branch information
brian-mulier-p committed Apr 17, 2024
1 parent 9a56d5d commit 90917ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM kestra/kestra:latest-full

COPY build/libs/* /app/plugins/
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ This repository serves as a general template for creating a new [Kestra](https:/
* Documentation for developing a plugin is included in the [Plugin Developer Guide](https://kestra.io/docs/plugin-developer-guide/)


## Quickstart
To build and run on docker Kestra with your custom plugin, run this command:
`./gradlew shadowJar && docker build -t kestra-custom . && docker run --rm -p 8080:8080 kestra-custom server local`

## License
Apache 2.0 © [Kestra Technologies](https://kestra.io)

Expand Down

0 comments on commit 90917ae

Please sign in to comment.