From 1dcc760b7f15cee797314b0a6ce2270d1d7fe803 Mon Sep 17 00:00:00 2001 From: Lev Date: Mon, 14 Mar 2022 12:30:36 +0300 Subject: [PATCH] Fix configurator command on some platforms Turns out _on some machines_ `configurator` serivce fails because of path resolving (I guess that's why). I encountered this error when debugging custom app Docker setup in GitHub Actions. Also https://github.com/vrslev/frappe_docker/pull/26 --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index da3decfd..4933cc77 100644 --- a/compose.yaml +++ b/compose.yaml @@ -12,7 +12,7 @@ x-backend-defaults: &backend_defaults services: configurator: <<: *backend_defaults - command: configure.py + command: /usr/local/bin/configure.py environment: DB_HOST: ${DB_HOST} DB_PORT: ${DB_PORT}