He guys, I'm trying to write pacts in my pacts fol...
# pact-php
b
He guys, I'm trying to write pacts in my pacts folder with a mock-service container, the test runs sucessfully, but any pact file json is generated inside my folder, here is my container:
Copy code
setup-mock-service:
        image: pactfoundation/pact-cli:latest
        container_name: pact-mock
        volumes:
            - /pacts:/pacts
        ports:
            - "7200:7200"
        command: mock-service --consumer openapi-freight-bff --provider ms-freight -p 7200 --host 0.0.0.0 --pact-dir /pacts
        networks:
            - openapi
Am I missing any flag or config?
m
something is not right, as it wants a relative
./pacts
folder. Maybe the args aren’t coming in right?
1