You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-11-27 22:28:31 +02:00
add kestra
This commit is contained in:
@@ -47,6 +47,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] cmak (~kafka-manager~)
|
- [x] cmak (~kafka-manager~)
|
||||||
- [x] datax :cn:
|
- [x] datax :cn:
|
||||||
- [x] kafka-arm
|
- [x] kafka-arm
|
||||||
|
- [x] kestra/kestra
|
||||||
- [x] luigi
|
- [x] luigi
|
||||||
- [x] nifi
|
- [x] nifi
|
||||||
- [x] openrefine
|
- [x] openrefine
|
||||||
|
|||||||
7
kestra/README.md
Normal file
7
kestra/README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kestra
|
||||||
|
======
|
||||||
|
|
||||||
|
[Kestra][1] is a universal open-source orchestrator that makes both scheduled
|
||||||
|
and event-driven workflows easy.
|
||||||
|
|
||||||
|
[1]: https://github.com/kestra-io/kestra
|
||||||
55
kestra/docker-compose.yml
Normal file
55
kestra/docker-compose.yml
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
kestra:
|
||||||
|
image: kestra/kestra:latest-full
|
||||||
|
command: server standalone --worker-thread=128
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
- "8081:8081"
|
||||||
|
volumes:
|
||||||
|
- ./data/kestra/storage:/app/storage
|
||||||
|
- ./data/kestra/tmp:/app/tmp
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
environment:
|
||||||
|
KESTRA_CONFIGURATION: |
|
||||||
|
datasources:
|
||||||
|
postgres:
|
||||||
|
url: "jdbc:postgresql://postgres:5432/kestra"
|
||||||
|
driverClassName: "org.postgresql.Driver"
|
||||||
|
username: "kestra"
|
||||||
|
password: "k3str4"
|
||||||
|
kestra:
|
||||||
|
url: http://localhost:8080/
|
||||||
|
server:
|
||||||
|
basic-auth:
|
||||||
|
enabled: false
|
||||||
|
username: "admin@example.com"
|
||||||
|
password: "admin"
|
||||||
|
repository:
|
||||||
|
type: postgres
|
||||||
|
storage:
|
||||||
|
type: local
|
||||||
|
local:
|
||||||
|
base-path: "/app/storage"
|
||||||
|
queue:
|
||||||
|
type: postgres
|
||||||
|
tasks:
|
||||||
|
tmp-dir:
|
||||||
|
path: "/app/tmp"
|
||||||
|
user: root
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_started
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:16-alpine
|
||||||
|
volumes:
|
||||||
|
- ./data/postgres:/var/lib/postgresql/data
|
||||||
|
environment:
|
||||||
|
- POSTGRES_DB=kestra
|
||||||
|
- POSTGRES_USER=kestra
|
||||||
|
- POSTGRES_PASSWORD=k3str4
|
||||||
|
restart: unless-stopped
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:14-alpine
|
image: postgres:16-alpine
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user