Copy the SQL File to the Container:
- First, copy the number_cache.sql file from your local machine to the Docker container. You can use docker cp for this:
docker cp /tmp/number_cache.sql mysql-container:/tmp/number_cache.sql
This will copy the number_cache.sql file from your /tmp directory into the /tmp directory of your running mysql-container.
Written by A.M. Rinas