Files
docker-compose/kestra/docker-compose.yml
2025-03-10 12:04:39 +01:00

80 lines
2.4 KiB
YAML

volumes:
postgres-data:
driver: local
kestra-data:
driver: local
services:
postgres:
image: ${DOCKER_REGISTRY:-}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: ${DOCKER_REGISTRY:-}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:
- wud.display.icon=mdi:evernote
- com.centurylinklabs.watchtower.enable=true
- homepage.group=Infrastructure
- homepage.name=Kestra
- homepage.weight=1
- homepage.icon=${APPNAME}.png
- homepage.href=https://${APPNAME}.sectorq.eu
- homepage.description=Automation
- homepage.server=my-docker
- homepage.container=kestra-kestra-1
# homepage.widget.type: ${APPNAME}
# homepage.widget.url: https://${APPNAME}.sectorq.eu
# homepage.widget.key: ddfc91b29920082636da70cc677aec74c88a7666
# homepage.widget.version: 2
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