Google Pub/Sub emulator in a Docker container, suitable for Kubernetes.
7.4K
The gcloud suite has an emulator for Google PubSub, which is great for testing locally how to run code against their APIs.
However, it is not very useful if you want to run in a containerized environment, and want to test how the whole thing behaves. Hence this container.
$ docker pull samnco/pubsub-emulator:2016.01.22
$ docker run -it --name pubsub-emulator -p 8042:8042 samnco/pubsub-emulator:2016.01.22
Now you need to run the equivalent of the $(gcloud beta emulators pubsub env-init) command
$ export PUBSUB_EMULATOR_HOST=localhost:8042
Now you can use the standard APIs such as gcloud-python to interact with it.
You can bind a volume to /data in the container to get resilient data.
$ docker run -it --name pubsub-emulator -p 8042:8042 -v /path/to/my/data/folder:/data samnco/pubsub-emulator:2016.01.22
You can also change the port where the emulator runs by editing the HOST_PORT environment variable.
The emulator logs are stored in /var/log/pubsub.log
Content type
Image
Digest
Size
279.3 MB
Last updated
almost 10 years ago
docker pull redpointgames/docker-pubsub-emulator