File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151 push : true
5252 tags : ${{ steps.meta.outputs.tags }}
5353 labels : ${{ steps.meta.outputs.labels }}
54+
Original file line number Diff line number Diff line change @@ -43,8 +43,28 @@ docker run -d \
4343
4444Open: ` http://localhost:4506 `
4545
46+ ` capo-to-keys:dev ` in this section is a local image tag built on your machine.
47+
4648Outputs 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
5070Use the included compose example:
@@ -71,9 +91,10 @@ Published GHCR image format:
7191
7292Common 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
You can’t perform that action at this time.
0 commit comments