Skip to content

Instantly share code, notes, and snippets.

@oniestel
Created October 18, 2018 15:48
Show Gist options
  • Select an option

  • Save oniestel/7c64c58f4c69a0c4585ba5255a738c99 to your computer and use it in GitHub Desktop.

Select an option

Save oniestel/7c64c58f4c69a0c4585ba5255a738c99 to your computer and use it in GitHub Desktop.
Import *.tsv file to dockerized postgres from host
#!/bin/bash
cat <file>.tsv | docker exec -i <container> psql -d <database> -U user -c "COPY <table> FROM STDIN"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment