Change config json file and set version to 0.0.2

This commit is contained in:
2026-07-19 14:42:16 +02:00
parent 2a2c156c23
commit d3975f0c49
2 changed files with 44 additions and 6 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
set VERSION=0.0.1 export VERSION=0.0.2
docker build -t n8n-runners-custom:$VERSION . docker build -t n8n-runners-custom:"$VERSION" .
docker login gitea.sda.zone docker login gitea.sda.zone
docker tag n8n-runners-custom:$VERSION gitea.sda.zone/stephane.david/n8n-runners-custom:$VERSION docker tag n8n-runners-custom:"$VERSION" gitea.sda.zone/stephane.david/n8n-runners-custom:"$VERSION"
docker push gitea.sda.zone/stephane.david/n8n-runners-custom:$VERSION docker push gitea.sda.zone/stephane.david/n8n-runners-custom:"$VERSION"
+40 -2
View File
@@ -2,13 +2,51 @@
"task-runners": [ "task-runners": [
{ {
"runner-type": "javascript", "runner-type": "javascript",
"workdir": "/home/runner",
"command": "/usr/local/bin/node",
"args": [
"--disallow-code-generation-from-strings",
"--disable-proto=delete",
"/opt/runners/task-runner-javascript/dist/start.js"
],
"health-check-server-port": "5681",
"allowed-env": [
"PATH",
"GENERIC_TIMEZONE",
"NODE_OPTIONS",
"NODE_PATH",
"N8N_RUNNERS_AUTO_SHUTDOWN_TIMEOUT",
"N8N_RUNNERS_TASK_TIMEOUT",
"N8N_RUNNERS_MAX_CONCURRENCY",
"N8N_SENTRY_DSN",
"N8N_VERSION",
"ENVIRONMENT",
"DEPLOYMENT_NAME",
"HOME"
],
"env-overrides": { "env-overrides": {
"NODE_FUNCTION_ALLOW_BUILTIN": "*", "NODE_FUNCTION_ALLOW_BUILTIN": "crypto",
"NODE_FUNCTION_ALLOW_EXTERNAL": "*" "NODE_FUNCTION_ALLOW_EXTERNAL": "moment",
"N8N_RUNNERS_HEALTH_CHECK_SERVER_HOST": "0.0.0.0"
} }
}, },
{ {
"runner-type": "python", "runner-type": "python",
"workdir": "/home/runner",
"command": "/opt/runners/task-runner-python/.venv/bin/python",
"args": ["-I", "-B", "-X", "disable_remote_debug", "-m", "src.main"],
"health-check-server-port": "5682",
"allowed-env": [
"PATH",
"N8N_RUNNERS_LAUNCHER_LOG_LEVEL",
"N8N_RUNNERS_AUTO_SHUTDOWN_TIMEOUT",
"N8N_RUNNERS_TASK_TIMEOUT",
"N8N_RUNNERS_MAX_CONCURRENCY",
"N8N_SENTRY_DSN",
"N8N_VERSION",
"ENVIRONMENT",
"DEPLOYMENT_NAME"
],
"env-overrides": { "env-overrides": {
"N8N_RUNNERS_STDLIB_ALLOW": "*", "N8N_RUNNERS_STDLIB_ALLOW": "*",
"N8N_RUNNERS_EXTERNAL_ALLOW": "*" "N8N_RUNNERS_EXTERNAL_ALLOW": "*"