You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace `<target_url>` with the actual target URL and `<destination_url>` with the desired port number for the Flask app. If `DESTINATION_URL` is not set, the default port will be 5000.
34
34
35
35
## Sending a POST Request to the `/forward` Endpoint
36
36
@@ -53,7 +53,7 @@ To run the webserver using Docker, follow these steps:
53
53
54
54
2. Run the Docker container:
55
55
```sh
56
-
docker run -p 5000:5000 spotbot
56
+
docker run -p 5000:5000 -e TARGET_URL=<target_url> -e DESTINATION_URL=<destination_url>spotbot
57
57
```
58
58
59
-
The webserver will start and listen on port 5000 inside the Docker container.
59
+
Replace `<target_url>` with the actual target URL and `<destination_url>` with the desired port number for the Flask app. If `DESTINATION_URL` is not set, the default port will be 5000.
0 commit comments