Skip to content

Instantly share code, notes, and snippets.

@sushant12
Created July 15, 2024 10:13
Show Gist options
  • Save sushant12/93198e781ac003bceb3e4afc13ad6ff1 to your computer and use it in GitHub Desktop.
Save sushant12/93198e781ac003bceb3e4afc13ad6ff1 to your computer and use it in GitHub Desktop.
import sql file into pg container
docker cp dumpfile.sql container-name:dumpfile.sql
docker exec -it container-name bash
psql -U <username> -d <database_name> -f /dumpfile.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment