File: content/manuals/accounts/deactivate-user-account.md
Issue
The prerequisites section provides incorrect syntax for the docker pull command:
Download any images and tags you want to keep. Use docker pull -a <image>:<tag>.
The -a flag (or --all-tags) is used to pull ALL tags of an image, so specifying a specific :<tag> in the same command doesn't make sense. You can't pull all tags and specify a single tag at the same time.
Suggested fix
Change the command syntax to:
Download any images and tags you want to keep. Use `docker pull -a <image>`.
Or, if the intent is to show pulling a specific tag, remove the -a flag:
Download any images and tags you want to keep. Use `docker pull <image>:<tag>`.
The same error appears in content/manuals/admin/organization/deactivate-account.md and should be fixed there as well.
Found by nightly documentation freshness scanner