Skip to content

Instantly share code, notes, and snippets.

@jgillman
Last active March 8, 2024 17:51
Show Gist options
  • Star 89 You must be signed in to star a gist
  • Fork 29 You must be signed in to fork a gist
  • Save jgillman/8191d6f587ffc7207a88e987e034b675 to your computer and use it in GitHub Desktop.
Save jgillman/8191d6f587ffc7207a88e987e034b675 to your computer and use it in GitHub Desktop.
pg_restore a local db dump into Docker
# Assumes the database container is named 'db'
DOCKER_DB_NAME="$(docker-compose ps -q db)"
DB_HOSTNAME=db
DB_USER=postgres
LOCAL_DUMP_PATH="path/to/local.dump"
docker-compose up -d db
docker exec -i "${DOCKER_DB_NAME}" pg_restore -C --clean --no-acl --no-owner -U "${DB_USER}" -d "${DB_HOSTNAME}" < "${LOCAL_DUMP_PATH}"
docker-compose stop db
@cja-dev
Copy link

cja-dev commented Mar 8, 2024

did somebody solve it? tips above didnt help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment