From d13e751c3bddba0d93251c3b8ece5fcebaa66c63 Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Wed, 1 May 2024 20:29:23 +0800 Subject: [PATCH] Update production.yml to include volumes for kestra-data, docker.sock, and kestra-wd --- production.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/production.yml b/production.yml index 27254ba..a96bcfa 100644 --- a/production.yml +++ b/production.yml @@ -68,10 +68,6 @@ services: # Note that this is meant for development only. Refer to the documentation for production deployments of Kestra which runs without a root user. user: "1000:1000" command: server standalone --worker-thread=128 - volumes: - - ./kestra-data:/app/storage - - /var/run/docker.sock:/var/run/docker.sock - - /tmp/kestra-wd:/tmp/kestra-wd environment: KESTRA_CONFIGURATION: | datasources: @@ -98,6 +94,10 @@ services: tmp-dir: path: /tmp/kestra-wd/tmp url: http://kestra.furyhawk.lol/ + volumes: + - ./kestra-data:/app/storage + - /var/run/docker.sock:/var/run/docker.sock + - /tmp/kestra-wd:/tmp/kestra-wd expose: - "8080" - "8081"