I have tried several things here. I have run things like https://hub.docker.com/r/mtlynch/firestore-emulator or just the official google sdk image. The problem is those don’t seem to have a way of persisting data. The firebase tools seem to have this functionality but require that I login. I would like to run the firestore emulator in docker ..
Category : google-cloud-firestore
I am trying to run my Node project as well as the Firestore Emulator with docker-compose locally in a dev environment. I have a Dockerfile for my Node project that looks like this: WORKDIR /app ADD package*.json ./ RUN npm install ADD bin ./bin CMD [ "npm", "run", "dev" ] Then I have a seperate ..
I have a python script that I want to run on a schedule within Google Cloud. This script loads a custom TensorFlow model, inputs new data (collected from an AIP), produces predictions, does some analysis on the predictions, and saves the results to Firestore. For this to run I have a list of dependencies, a ..