InnoDB: End of page dump, InnoDB: Uncompressed page, InnoDB: Failed to read file './shopware/product.ibd'

When I am trying to build the Elasticsearch Indexes using the following command
php bin/console dal:refresh:index

My system got stuck. after the restart, my MySQL container not starting

I was using the development environment template in docker and mariadb.

I have uninstalled the images, volumes, and containers but no hope.

p c       6;
InnoDB: End of page dump
2022-03-03 11:59:46 0 [Note] InnoDB: Uncompressed page, stored checksum in field1 2155812753, calculated checksums for field1: crc32 1700807704, innodb 1019265487,  page type 17855 == INDEX.none 3735928559, stored checksum in field2 210896322, calculated checksums for field2: crc32 1700807704, innodb 2486268467, none 3735928559,  page LSN 5 505105366, low 4 bytes of LSN at page end 177607478, page number (if stored to page already) 611, space id (if created with >= MySQL-4.1.1 and stored already) 1005
2022-03-03 11:59:46 0 [Note] InnoDB: Page may be an index page where index id is 3418
2022-03-03 11:59:46 0 [Note] InnoDB: It is also possible that your operating system has corrupted its own file cache and rebooting your computer removes the error. If the corrupt page is an index page. You can also try to fix the corruption by dumping, dropping, and reimporting the corrupt table. You can use CHECK TABLE to scan your table for corruption. Please refer to https://mariadb.com/kb/en/library/innodb-recovery-modes/ for information about forcing recovery.
2022-03-03 11:59:46 0 [ERROR] InnoDB: Failed to read file './shopware/product.ibd' at offset 611: Page read from tablespace is corrupted.
2022-03-03 11:59:46 0 [Note] InnoDB: Set innodb_force_recovery=1 to ignore corrupted pages.
2022-03-03 11:59:46 0 [ERROR] InnoDB: Plugin initialization aborted with error Data structure corruption
2022-03-03 11:59:47 0 [Note] InnoDB: Starting shutdown...
2022-03-03 11:59:48 0 [ERROR] Plugin 'InnoDB' init function returned error.
2022-03-03 11:59:48 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2022-03-03 11:59:48 0 [Note] Plugin 'FEEDBACK' is disabled.
2022-03-03 11:59:48 0 [ERROR] Unknown/unsupported storage engine: InnoDB
2022-03-03 11:59:48 0 [ERROR] Aborting

Finally, I found a solution.
My SQL files were stored in the following folder

dev-ops/docker/_volumes/mysql

I have deleted all files from the folder and volumes, images and containers removed from docker then I run ./psh.phar docker:start

This solved my issue.