-
-
Notifications
You must be signed in to change notification settings - Fork 174
Troubleshooting BaseURLs
remsky edited this page Feb 2, 2025
·
1 revision
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
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.
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.
- 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.
See sidebar for pages