Docker-compose example

version: '3.7'
services:
  openapi-agent:
    image: spoud/agoora-openapi-agent
    environment:
      - "AGOORA_PROFILER_ENDPOINT=agoora-profiler-service:8089"
      - "AGOORA_ENDPOINT=${AGORRA_ENDPOINT}"
      - "AGOORA_TRANSPORT_PATH=${AGORRA_AGENT_TRANSPORT_ABSOLUTE_PATH}"
      - "AGOORA_AUTH_USER_NAME=${AGORRA_AUTH_USER_NAME}"
      - "AGOORA_AUTH_USER_TOKEN=${AGORRA_AUTH_USER_TOKEN}"
      - "AGOORA_OPENAPI_BASE_URL=https://petstore3.swagger.io/"

  agoora-profiler-service:
    image: spoud/agoora-profiler-service