Update local dev docs (#1246)

Suggest uncommenting backend_image and frontend_image to use local images
This commit is contained in:
sua yoo 2023-10-03 14:05:21 -07:00 committed by GitHub
parent e9bac4c088
commit 4f36a94bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'
```