mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
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
This commit is contained in:
parent
7831a097c4
commit
1dcc760b7f
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue