You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation: to build docker image with firestore emulator and ui we can prefetch firestore emulator with help of setup:emulators:firestore but there is no such command for ui, so it is being downloaded each time container starts.
Workaround: meanwhile workaround is to
ADD https://storage.googleapis.com/firebase-preview-drop/emulator/ui-v1.4.1.zip /root/.cache/firebase/emulators/ui-v1.4.1.zip
RUN unzip /root/.cache/firebase/emulators/ui-v1.4.1.zip -d /root/.cache/firebase/emulators/ui-v1.4.1
What needs to be done:
If I understood everything correctly all we need is add
Motivation: to build docker image with firestore emulator and ui we can prefetch firestore emulator with help of
setup:emulators:firestore
but there is no such command for ui, so it is being downloaded each time container starts.Workaround: meanwhile workaround is to
What needs to be done:
If I understood everything correctly all we need is add
src/commands/setup-emulators-ui.js
And add it to
src/commands/index.js
The text was updated successfully, but these errors were encountered: