https://github.com/metal-stack/rethinkdb-backup-tools-build
This project builds alpine compatible binaries from Python-based RethinkDB backup tools.
https://github.com/metal-stack/rethinkdb-backup-tools-build
Last synced: 11 months ago
JSON representation
This project builds alpine compatible binaries from Python-based RethinkDB backup tools.
- Host: GitHub
- URL: https://github.com/metal-stack/rethinkdb-backup-tools-build
- Owner: metal-stack
- License: mit
- Created: 2023-08-22T07:35:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-22T08:59:51.000Z (over 2 years ago)
- Last Synced: 2025-01-11T11:18:00.079Z (about 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# rethinkdb-backup-tools-build
This project builds binaries from Python-based RethinkDB backup tools.
This is helpful as long as these packages are not contained in the original RethinkDB docker image, producing a huge docker image containing Python (see [rethinkdb-dockerfiles#57](https://github.com/rethinkdb/rethinkdb-dockerfiles/issues/57)).
Binaries include:
- rethinkdb-dump
- rethinkdb-restore
## Usage
```dockerfile
FROM ghcr.io/metal-stack/rethinkdb-backup-tools-build:2.4.0 as rethinkdb-backup-tools
FROM rethinkdb:2.4.0
COPY --from=rethinkdb-backup-tools /rethinkdb-dump /rethinkdb-restore /rethinkdb/
```