Skip to content

Commit 82dba07

Browse files
Doc
1 parent ba3168e commit 82dba07

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -831,22 +831,22 @@ Backups allow you to save and restore the complete state of local AEM instances.
831831

832832
```shell
833833
# List all available backups
834-
sh aemw instance local backup list
834+
sh aemw instance backup list
835835

836836
# Create backup of a single instance
837-
sh aemw instance local backup make --instance-id local_author
837+
sh aemw instance backup make --instance-id local_author
838838

839839
# Create backup with custom file path
840-
sh aemw instance local backup make --instance-id local_author --file my-backup.aemb.tar.zst
840+
sh aemw instance backup make --instance-id local_author --file my-backup.aemb.tar.zst
841841

842842
# Restore instance from backup (instance must not exist)
843-
sh aemw instance local backup use --instance-id local_author
843+
sh aemw instance backup use --instance-id local_author
844844

845845
# Restore from specific backup file
846-
sh aemw instance local backup use --instance-id local_author --file my-backup.aemb.tar.zst
846+
sh aemw instance backup use --instance-id local_author --file my-backup.aemb.tar.zst
847847

848848
# Restore and delete existing instance first
849-
sh aemw instance local backup use --instance-id local_author --delete-created
849+
sh aemw instance backup use --instance-id local_author --delete-created
850850
```
851851

852852
### Backup & Restore Cycle
@@ -855,14 +855,14 @@ Backups enable safe experimentation - break your instance, restore in 10-15 minu
855855

856856
```shell
857857
# 1. Save current state before experimenting
858-
sh aemw instance local backup perform
858+
sh aemw instance backup perform
859859

860860
# 2. Experiment freely (install packages, change configs, break things...)
861861
# ...
862862

863863
# 3. Something went wrong? Delete and restore from backup
864864
sh aemw instance local delete --kill
865-
sh aemw instance local backup restore
865+
sh aemw instance backup restore
866866
```
867867

868868
Use cases:

0 commit comments

Comments
 (0)