1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 18:06:36 +02:00

add kestra

This commit is contained in:
kev 2024-05-24 15:27:39 +08:00
parent 5dcc7d58e7
commit 36b46aecd2
4 changed files with 64 additions and 1 deletions

View File

@ -47,6 +47,7 @@ A collection of delicious docker recipes.
- [x] cmak (~kafka-manager~)
- [x] datax :cn:
- [x] kafka-arm
- [x] kestra/kestra
- [x] luigi
- [x] nifi
- [x] openrefine

7
kestra/README.md Normal file
View 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
View 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

View File

@ -1,7 +1,7 @@
version: "3.8"
services:
postgres:
image: postgres:14-alpine
image: postgres:16-alpine
ports:
- "5432:5432"
volumes: