mirror of
https://github.com/open-webui/docs.git
synced 2026-03-27 13:28:37 +07:00
Update amazon-bedrock.md
This commit is contained in:
@@ -73,6 +73,23 @@ docker run -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS
|
||||
|
||||
You should now be able to access the BAG's swagger page at: http://localhost:8000/docs
|
||||
|
||||
:::warning Troubleshooting: Container Exits Immediately
|
||||
|
||||
If the Bedrock Gateway container starts and immediately exits (especially on Windows), check the logs with `docker logs <container_id>`. If you see Python/Uvicorn errors, this is likely a **Python 3.13 compatibility issue** with the BAG's Dockerfile.
|
||||
|
||||
**Workaround:** Edit the `Dockerfile` before building and change the Python version from 3.13 to 3.12:
|
||||
|
||||
```dockerfile
|
||||
# Change this line:
|
||||
FROM python:3.13-slim
|
||||
# To:
|
||||
FROM python:3.12-slim
|
||||
```
|
||||
|
||||
Then rebuild with `docker build . -f Dockerfile -t bedrock-gateway`.
|
||||
|
||||
:::
|
||||
|
||||

|
||||
|
||||
## Step 3: Add Connection in Open-WebUI
|
||||
|
||||
Reference in New Issue
Block a user