curl -v -XPUT \-H "Content-Type: application/json" \
-d@spec/pacts/service_client_service.json \
http://your-pact-broker/pacts/provider/service/consumer/service-client/version/1.0.0@PactBroker(host = "localhost", port = "8080")
--
You received this message because you are subscribed to the Google Groups "Pact" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pact-support...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
FROM ruby:2.1
RUN git clone https://github.com/bethesque/pact_broker.git && cd pact_broker && git checkout tags/v1.9.3 && cd example && bundle
WORKDIR "/pact_broker/example"
EXPOSE 8080
CMD bundle exec rackup -p 8080 --host 0.0.0.0