Skip to content

Commit 2082f5c

Browse files
committed
docs: point docker instructions to palomachain
1 parent 0849790 commit 2082f5c

1 file changed

Lines changed: 14 additions & 5 deletions

File tree

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,20 +246,29 @@ This approach is useful if you want to pin to a specific commit, apply local pat
246246

247247
### Docker Image (Optional)
248248

249-
Build an image from the latest GitHub release (default) or a specific tag:
249+
You can pull the published Docker image from Docker Hub (`palomachain/database-replicator`) or build your own from the release assets.
250+
251+
**Pull a prebuilt image:**
252+
253+
```bash
254+
docker pull palomachain/database-replicator:v6.0.5
255+
docker tag palomachain/database-replicator:v6.0.5 palomachain/database-replicator:latest
256+
```
257+
258+
**Build from GitHub release assets:**
250259

251260
```bash
252261
# latest release asset
253-
docker build -t serenorg/database-replicator:latest .
262+
docker build -t palomachain/database-replicator:latest .
254263

255264
# specific version
256-
docker build --build-arg VERSION=v6.0.5 -t serenorg/database-replicator:v6.0.5 .
265+
docker build --build-arg VERSION=v6.0.5 -t palomachain/database-replicator:v6.0.5 .
257266
```
258267

259268
Run the CLI inside the container (pass connection strings via arguments or environment variables):
260269

261270
```bash
262-
docker run --rm -it serenorg/database-replicator:latest \
271+
docker run --rm -it palomachain/database-replicator:latest \
263272
validate --source "postgresql://user:pass@source/db" \
264273
--target "postgresql://user:pass@target/db"
265274
```
@@ -269,7 +278,7 @@ Mount local config files if needed:
269278
```bash
270279
docker run --rm -it \
271280
-v "$PWD:/work" \
272-
serenorg/database-replicator:latest \
281+
palomachain/database-replicator:latest \
273282
init --source "$(cat /work/source.txt)" --target "$(cat /work/target.txt)"
274283
```
275284

0 commit comments

Comments
 (0)