Skip to content

Commit 8cb7f7e

Browse files
committed
Merge remote-tracking branch 'origin/main' into dev
2 parents c5f2dae + 618a6f9 commit 8cb7f7e

2 files changed

Lines changed: 24 additions & 2 deletions

File tree

.github/workflows/docker-ghcr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ jobs:
5151
push: true
5252
tags: ${{ steps.meta.outputs.tags }}
5353
labels: ${{ steps.meta.outputs.labels }}
54+

README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,28 @@ docker run -d \
4343

4444
Open: `http://localhost:4506`
4545

46+
`capo-to-keys:dev` in this section is a local image tag built on your machine.
47+
4648
Outputs are written to `/data/outputs` (mapped to your local volume path).
4749

50+
## Pull From GHCR (No Local Build)
51+
52+
Pinned release (recommended for reproducible testing):
53+
54+
```bash
55+
docker pull ghcr.io/reprodev/capotokeys:v1.0
56+
docker run --rm -it \
57+
--name capotokeys \
58+
-p 4506:4506 \
59+
-v "$(pwd)/appdata/config/capotokeys:/data" \
60+
ghcr.io/reprodev/capotokeys:v1.0
61+
```
62+
63+
Latest default-branch image:
64+
65+
```bash
66+
docker pull ghcr.io/reprodev/capotokeys:latest
67+
```
4868
## Quick Start (GHCR + Compose)
4969

5070
Use the included compose example:
@@ -71,9 +91,10 @@ Published GHCR image format:
7191

7292
Common tags:
7393

74-
- `latest` (default branch)
94+
- `v1.0` (current release tag)
95+
- `latest` (default branch, moving tag)
7596
- `dev` (dev branch)
76-
- `vX.Y.Z` (release tags)
97+
- `vX.Y.Z` (future release tags)
7798
- `sha-<commit>`
7899

79100
## Configuration

0 commit comments

Comments
 (0)