Skip to content

Commit

Permalink
add docker image from hub
Browse files Browse the repository at this point in the history
Signed-off-by: Sid Sun <sid@sidsun.com>
  • Loading branch information
Sid-Sun committed Aug 16, 2024
1 parent 68ffdbb commit 48dff12
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ This is an extension of the uptime-kuma project to solve this. Replicator Kuma r

Replicator Kuma only creates restic snapshots of files (data) when they change change (the data for heartbeats, TLS, settings, etc. i.e. monitoring and instance specific data is not replicated) this selective backup happens by leveraging SHA256 sums - we dump the data and compare latest snapshot data with the new dump.

### Getting started

Replicator Kuma only adds a script to the original uptime-kuma images, the new images are published to docker hub under realsidsun/replicator-kuma and follows the same semver number as uptime-kuma (starting from 1.23.13).

Replicator Kuma may lag behind uptime kuma as the repo needs to be manually updated right now (if you notice a new update, fell free to raise a PR updating Dockerfile, the actions workflow should build and push once I merge).

### How it works

Alongside the uptime-kuma service, the replicator kuma container periodically runs a few functions to either:
Expand Down
7 changes: 2 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ version: '3.8'
services:
main:
container_name: uptime-kuma-main
image: replicator-kuma
# build:
# context: .
# dockerfile: Dockerfile
image: realsidsun/replicator-kuma:1.23.13
volumes:
- uptime-kuma-main:/app/data:rw
ports:
Expand All @@ -20,7 +17,7 @@ services:
- RESTIC_PASSWORD=I9n7G7G0ZpDWA3GOcJbIuwQCGvGUBkU5
replica:
container_name: uptime-kuma-replica
image: replicator-kuma
image: realsidsun/replicator-kuma:1.23.13
volumes:
- uptime-kuma-replica:/app/data:rw
ports:
Expand Down

0 comments on commit 48dff12

Please sign in to comment.