File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -488,14 +488,21 @@ The recommended upgrade path is:
488488
4894891. Pull the latest compose files from this repo :
490490
491-
491+ ` ` ` shell
492+ git pull origin main
493+ ` ` `
492494
493495 > This automatically populates the latest service versions.
494496
4954971. Confirm `FIFTYONE_DATABASE_ADMIN` is set to `false` in your
496498 `compose.override.yaml` :
497499
498-
500+ ` ` ` yaml
501+ services:
502+ fiftyone-app:
503+ environment:
504+ FIFTYONE_DATABASE_ADMIN: false
505+ ` ` `
499506
500507 > This prevents automatic database migrations from running on startup and
501508 > breaking active SDK sessions.
@@ -506,11 +513,23 @@ The recommended upgrade path is:
506513
5075141. Bring the compose stack down :
508515
509-
516+ ` ` ` shell
517+ docker compose \
518+ -f compose.dedicated-plugins.yaml \
519+ -f compose.delegated-operators.yaml \
520+ -f compose.override.yaml \
521+ down
522+ ` ` `
510523
5115241. Bring the new stack up :
512525
513-
526+ ` ` ` shell
527+ docker compose \
528+ -f compose.dedicated-plugins.yaml \
529+ -f compose.delegated-operators.yaml \
530+ -f compose.override.yaml \
531+ up -d
532+ ` ` `
514533
515534For full upgrade guidance, refer to [Upgrading](./docs/upgrading.md).
516535
You can’t perform that action at this time.
0 commit comments