Skip to content

Troubleshooting BaseURLs

remsky edited this page Feb 2, 2025 · 1 revision

Common Base URLs

The base URL for accessing the API endpoints can vary depending on how you are accessing the service, your docker setup, etc. Here are the common base URLs:

  • From the host machine: http://localhost:8880
  • From another Docker container: http://host.docker.internal:8880

Accessing Endpoints

From the Host Machine

When accessing the API from the host machine, you can use the base URL http://localhost:8880. This is the default URL when running the service locally.

From Another Docker Container

When accessing the API from another Docker container, you need to use the base URL http://host.docker.internal:8880. This URL resolves to the host machine's IP address from within the Docker network.

Troubleshooting Tips

  • Ensure that the service is running and accessible on the specified port.
  • Check the network configuration to ensure that the Docker containers can communicate with the host machine.
  • Verify that there are no firewall rules blocking the traffic.