Skip to content

Commit 880ae7e

Browse files
sherpanclaude
andcommitted
fix(docker): restore code blocks removed by review suggestion commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 29d104b commit 880ae7e

1 file changed

Lines changed: 23 additions & 4 deletions

File tree

docker/README.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,14 +488,21 @@ The recommended upgrade path is:
488488

489489
1. 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

495497
1. 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

507514
1. 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

511524
1. 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

515534
For full upgrade guidance, refer to [Upgrading](./docs/upgrading.md).
516535

0 commit comments

Comments
 (0)