Skip to content

Instantly share code, notes, and snippets.

@riazul701
Forked from kekeimiku/mysql
Created March 8, 2023 16:50
Show Gist options
  • Save riazul701/f2501cbd518f3b874c028526fa29e501 to your computer and use it in GitHub Desktop.
Save riazul701/f2501cbd518f3b874c028526fa29e501 to your computer and use it in GitHub Desktop.
Dbeaver connect to docker database unable to export and import temporary solutions. mysql/postgres
#!/bin/sh
docker exec -i mysql /usr/bin/mysql $@ -p2325373912
#!/bin/sh
docker exec -i mysql /usr/bin/mysqldump $@ -p2325373912
#!/bin/sh
docker exec -i postgres /usr/local/bin/pg_dump $@
#!/bin/sh
docker exec -i postgres /usr/local/bin/pg_restore $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment