@tawk.to/nestjs-google-pubsub-microservice
Version:
NestJS Google Cloud Pub/Sub Microservice Transport
14 lines (13 loc) • 439 B
YAML
version: '2'
services:
google-pubsub-emulator:
build:
dockerfile: Dockerfile.pubsub
environment:
- PROJECT_ID=test-project-id
# 0.0.0.0 needed since by default it listen to [::1]:8085 which
# will make any incomming ipv4 and non local ipv6 request fails
# including docker proxy
- EMULATOR_HOST=0.0.0.0:8085
ports:
- 8085:8085