Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save petrozavodsky/9f549c1deb661b6760413575374edd05 to your computer and use it in GitHub Desktop.
Save petrozavodsky/9f549c1deb661b6760413575374edd05 to your computer and use it in GitHub Desktop.
mysql import in Docker
docker cp <dbfile.sql> <container>:/tmp/import.sql
docker exec -it <container> /bin/bash
mysql -u <user> -p <database name> < import.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment