Skip to content

Commit 5bedf17

Browse files
committed
fix(cli): align defaults in template and deployment
1 parent 6985d58 commit 5bedf17

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/integrations/agentcore/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
agent:
1414
build:
1515
context: ..
16-
dockerfile: agents/${AGENT:-strands}-single-agent/Dockerfile
16+
dockerfile: agents/${AGENT:-langgraph}-single-agent/Dockerfile
1717
platforms:
1818
- linux/arm64
1919
ports:
@@ -32,7 +32,7 @@ services:
3232
develop:
3333
watch:
3434
- action: sync+restart
35-
path: ../agents/${AGENT:-strands}-single-agent
35+
path: ../agents/${AGENT:-langgraph}-single-agent
3636
target: /app
3737
ignore:
3838
- __pycache__/

examples/integrations/agentcore/docker/up.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ ENV_FILE="$SCRIPT_DIR/.env"
1212
[[ -f "$ENV_FILE" ]] || { echo "ERROR: .env not found. Run: cp .env.example .env"; exit 1; }
1313

1414
# Read AGENT from .env
15-
AGENT=$(grep "^AGENT=" "$ENV_FILE" 2>/dev/null | cut -d= -f2 || echo "strands")
16-
AGENT="${AGENT:-strands}"
15+
AGENT=$(grep "^AGENT=" "$ENV_FILE" 2>/dev/null | cut -d= -f2 || echo "langgraph")
16+
AGENT="${AGENT:-langgraph}"
1717

1818
# Derive stack name from config.yaml
1919
BASE=$(python3 -c "

0 commit comments

Comments
 (0)