Sha256: 7ffbcdc2785535fa8ac65c9659e101a6ae9f02b26f0ab5689cb65aed739ec97d
Contents?: true
Size: 1007 Bytes
Versions: 14
Compression:
Stored size: 1007 Bytes
Contents
version: "3" services: postgres: image: postgres healthcheck: test: psql postgres --command "select 1" -U postgres ports: - "5432:5432" environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres volumes: - postgres-volume:/var/lib/postgresql/data pact-broker: build: . ports: - "9292:9292" depends_on: - postgres environment: DATABASE_URL: postgres://postgres:postgres@postgres/postgres PACT_BROKER_HIDE_PACTFLOW_MESSAGES: 'true' PACT_BROKER_BASE_URL: 'http://localhost:9292 http://pact-broker:9292' command: -wait tcp://postgres:5432 /usr/local/bin/start entrypoint: dockerize volumes: - ./lib:/home/lib - ./db:/home/db - ./config.ru:/home/config.ru - ./tasks:/home/tasks - ./Rakefile:/home/Rakefile shell: image: ruby:2.5.3-alpine depends_on: - pact-broker entrypoint: /bin/sh volumes: postgres-volume:
Version data entries
14 entries across 14 versions & 1 rubygems