From 4f36a94bc6e263d91e7577fc996e51ed6e7fdbfe Mon Sep 17 00:00:00 2001 From: sua yoo Date: Tue, 3 Oct 2023 14:05:21 -0700 Subject: [PATCH] Update local dev docs (#1246) Suggest uncommenting backend_image and frontend_image to use local images --- docs/develop/local-dev-setup.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/develop/local-dev-setup.md b/docs/develop/local-dev-setup.md index a66852ca..ba3c814b 100644 --- a/docs/develop/local-dev-setup.md +++ b/docs/develop/local-dev-setup.md @@ -18,8 +18,10 @@ so that local changes to it will not be accidentally committed to git. From the cp ./chart/examples/local-config.yaml ./chart/local.yaml ``` -2. Uncomment pull policies in `./chart/local.yaml`, which will ensure the local images are used: +2. Uncomment `backend_image`, `frontend_image`, and pull policies in `./chart/local.yaml`, which will ensure the local images are used: ```yaml +backend_image: docker.io/webrecorder/browsertrix-backend:latest +frontend_image: docker.io/webrecorder/browsertrix-frontend:latest backend_pull_policy: 'Never' frontend_pull_policy: 'Never' ```