Skip to content

Instantly share code, notes, and snippets.

@mstykt
Created April 7, 2022 16:47
Show Gist options
  • Save mstykt/867b53b8d5fc2976eb48c5f605446fcd to your computer and use it in GitHub Desktop.
Save mstykt/867b53b8d5fc2976eb48c5f605446fcd to your computer and use it in GitHub Desktop.
seller-api-wiremock:
image: wiremock/wiremock
container_name: seller-wiremock
ports:
- "8085:8080"
volumes:
- ./wiremock/seller-api:/home/wiremock
healthcheck:
test: curl --fail -s http://localhost:8085/__admin/ || exit 1
interval: 2s
timeout: 5s
retries: 2
product-api-wiremock:
image: wiremock/wiremock
container_name: product-wiremock
ports:
- "8086:8080"
volumes:
- ./wiremock/product-api:/home/wiremock
healthcheck:
test: curl --fail -s http://localhost:8086/__admin/ || exit 1
interval: 2s
timeout: 50s
retries: 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment