Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 548 Bytes

File metadata and controls

22 lines (16 loc) · 548 Bytes

Docker RethinkDB Python Driver

Docker container for RethinkDB Python driver, for backup/restore.

Has the following commands:

  • rethinkdb-dump
  • rethinkdb-export
  • rethinkdb-import
  • rethinkdb-index-rebuild
  • rethinkdb-restore

Backup

docker run --rm --link rethinkdb:rethinkdb -v $(pwd):/backup petecoop/rethinkdb-driver rethinkdb-dump -c rethinkdb -f /backup/rdb_dump.tar.gz

Restore

docker run --rm --link rethinkdb:rethinkdb -v $(pwd):/backup petecoop/rethinkdb-driver rethinkdb-restore -c rethinkdb /backup/rdb_dump.tar.gz