Closed Carbrex closed 6 months ago
Also one more thing running ../../lila-docker db
from other directory say /repos/lila gives error as settings.env not found. Not sure why the cd "$(dirname "$0")"
was removed from lila-docker
script.
Not sure why the
cd "$(dirname "$0")"
was removed fromlila-docker
script.
Unintentional when I changed it to work with multiple-word commands in https://github.com/lichess-org/lila-docker/pull/61
Thanks. Wonder why .pnpm-store
is already in gitignore.
Addind pnpm-store to volumes doesn't download the dependencies again and again on running
./lila-docker ui
and other command which include pnpm install. Before: Downloaded packages every time on pnpm install As far as I understand this is becausedocker compose run --rm ui /lila/ui/build --update --clean-build --debug $@
makes a new container every time it is run. After: Just takes the package from pnpm-store directory and doesn't download them again.