Skip to content

Instantly share code, notes, and snippets.

@iKlotho
Last active November 21, 2023 19:35
Show Gist options
  • Save iKlotho/e304e370eeca784b8334b15d9704f632 to your computer and use it in GitHub Desktop.
Save iKlotho/e304e370eeca784b8334b15d9704f632 to your computer and use it in GitHub Desktop.
PostgreSQL Dump [Docker]
# dump from docker
docker exec dbname dockerinstance -d postgres -Fc -U postgres > dump.sql
# finding dump encoding
file dump.sql
# Output> dump.sql: Little-endian UTF-16 Unicode text, with very long lines, with CRLF line terminators
# convert it to utf-8
iconv -f utf-16 -t utf-8 dumb.sql > dumb-utf8.sql
# restore the db
cat .\dump.sql | docker exec -i dockerinstance psql dbname -U db_user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment