Container image of Pub/Sub emulator.
5.0K
$ docker run -d --name pubsub-emulator -p 8085:8085 178inaba/pubsub-emulator
jobs:
test:
runs-on: ubuntu-latest
services:
pubsub-emulator:
image: 178inaba/pubsub-emulator
ports:
- "8085:8085"
env:
PUBSUB_EMULATOR_HOST: localhost:8085
steps:
- name: Test
run: |
# Replace this with running tests for your app.
curl -f localhost:8085
services:
pubsub:
image: 178inaba/pubsub-emulator
ports:
- "8085:8085"
healthcheck:
test: ['CMD', 'curl', '-f', 'localhost:8085']
app:
build: .
environment:
PUBSUB_EMULATOR_HOST: pubsub:8085
depends_on:
pubsub:
condition: service_healthy
Content type
Image
Digest
sha256:32f4aa797…
Size
431.5 MB
Last updated
4 days ago
docker pull 178inaba/pubsub-emulator