mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* updated README.md file with bearer token generation * updated README.md file with bearer token generation-removed client id and secret credentials * removed hardcoded domain * added agent runtime, frontend, observability and agentcore identity * update README.md file to reflect frontend testing
16 lines
278 B
YAML
16 lines
278 B
YAML
version: '3'
|
|
|
|
services:
|
|
chat-app:
|
|
build: .
|
|
ports:
|
|
- "5001:5001"
|
|
volumes:
|
|
- .:/app
|
|
- ~/.aws:/root/.aws:ro # Mount AWS credentials
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- AWS_REGION=${AWS_REGION:-us-west-2}
|
|
restart: unless-stopped
|