Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _snippets/agent-app-update-production.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Updating Production

Follow [this guide](templates/how-to/production-app) to update your production application. You'll need to:
Follow [this guide](/templates/how-to/production-app) to update your production application. You'll need to:

1. Create a new image
2. Update the ECS task definition and services.
4 changes: 2 additions & 2 deletions templates/how-to/production-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To use ECR, **create the image repo and authenticate with ECR** before pushing i

**1. Create the image repository in ECR**

The repo name should match the `ws_name`. Meaning if you're using the default workspace name, the repo name would be `ai`.
The repo name should match the `image_name` in `workspace/settings.py`.

<img src="/images/create-ecr-image.png" alt="create-ecr-image" />

Expand Down Expand Up @@ -76,7 +76,7 @@ ws_settings = WorkspaceSettings(
The `image_repo` defines the repo for your image.

- If using dockerhub it would be something like `phidata`.
- If using ECR it would be something like `[ACCOUNT_ID].dkr.ecr.us-east-1.amazonaws.com`
- If using ECR it would be something like `[ACCOUNT_ID].dkr.ecr.[AWS REGION].amazonaws.com`

</Note>

Expand Down