Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 337 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 337 Bytes

Google PubSub Emulator Docker Image

Usage

$ docker pull knarz/pubsub-emulator:latest
$ docker run --rm -ti --name pubsub-emu pubsub

Or in a docker-compose.yml

pubsub:
  image: knarz/pubsub-emulator
worker:
  build: .
  environment:
    - PUBSUB_EMULATOR_HOST=pubsub:8085
  restart: always
  links:
    - pubsub