This commit is contained in:
2025-03-06 18:07:36 +01:00
parent 2622ff47f1
commit c87864833c
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1,2 @@
APPNAME=kestra APPNAME=kestra
DOCKER_REGISTRY=localhost:5000/library/

View File

@ -6,7 +6,7 @@ volumes:
services: services:
postgres: postgres:
image: postgres:16 image: ${DOCKER_REGISTRY:-}postgres:16
volumes: volumes:
- /share/docker_data/kestra/postgres-data:/var/lib/postgresql/data - /share/docker_data/kestra/postgres-data:/var/lib/postgresql/data
environment: environment:
@ -20,7 +20,7 @@ services:
retries: 10 retries: 10
restart: always restart: always
kestra: kestra:
image: kestra/kestra:latest image: ${DOCKER_REGISTRY:-}kestra/kestra:latest
pull_policy: always 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. # 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" user: "root"