This commit is contained in:
2025-03-03 19:26:38 +01:00
parent d403bafc37
commit 8edd63f7a3
3 changed files with 68 additions and 1 deletions

1
kestra/.env Normal file
View File

@ -0,0 +1 @@
APPNAME=nginx

66
kestra/docker-compose.yml Normal file
View File

@ -0,0 +1,66 @@
volumes:
postgres-data:
driver: local
kestra-data:
driver: local
services:
postgres:
image: postgres:16
volumes:
- /share/docker_data/kestra/postgres-data:/var/lib/postgresql/data
environment:
POSTGRES_DB: kestra
POSTGRES_USER: kestra
POSTGRES_PASSWORD: k3str4
healthcheck:
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
interval: 30s
timeout: 10s
retries: 10
restart: always
kestra:
image: kestra/kestra:latest
pull_policy: always
# Note that this is meant for development only. Refer to the documentation for production deployments of Kestra which runs without a root user.
user: "root"
command: server standalone --worker-thread=128
volumes:
- /share/docker_data/kestra/kestra-data:/app/storage
- /var/run/docker.sock:/var/run/docker.sock
- /tmp/kestra-wd:/tmp/kestra-wd
restart: always
labels:
com.centurylinklabs.watchtower.enable: true
environment:
KESTRA_CONFIGURATION: |
datasources:
postgres:
url: jdbc:postgresql://postgres:5432/kestra
driverClassName: org.postgresql.Driver
username: kestra
password: k3str4
kestra:
server:
basic-auth:
enabled: true
username: "jaydee@sectorq.eu" # it must be a valid email address
password: l4c1j4yd33Du5lo
repository:
type: postgres
storage:
type: local
local:
base-path: "/app/storage"
queue:
type: postgres
tasks:
tmp-dir:
path: /tmp/kestra-wd/tmp
url: http://localhost:8080/
ports:
- "8980:8080"
- "8981:8081"
depends_on:
postgres:
condition: service_started

View File

@ -39,7 +39,7 @@ services:
restart: unless-stopped restart: unless-stopped
#network_mode: host #network_mode: host
labels: labels:
com.centurylinklabs.watchtower.enable: true - com.centurylinklabs.watchtower.enable=true
- homepage.group=Infrastructure - homepage.group=Infrastructure
- homepage.name=Pihole - homepage.name=Pihole
- homepage.weight=1 - homepage.weight=1