GUI for Google Cloud Datastore Emulator
You can run it with docker-compose as in the example.
The following environment variables need to be set.
PROJECT_ID
: Google Cloud project IDDATASTORE_EMULATOR_HOST
: The emulator endpointPORT
: the HTTP port (default 3000)
:
services:
datastore-gui:
image: 346o/datastore-gui:latest
ports:
- 3000:3000 # PORT:PORT
environment:
- PROJECT_ID=${PROJECT_ID}
- DATASTORE_EMULATOR_HOST=datastore:8081
- PORT=3000
: