diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-14 15:32:21 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-14 15:32:21 +0300 |
| commit | 112cf5742d65ac41ffd94680d4dce349626010a4 (patch) | |
| tree | 92ef0d2d832c629f34ff521bd39a42da898e5350 /f3s/goprecords/docker-image/Justfile | |
| parent | e592c41ae27881cc645bb66d4c7fac9e976fad0f (diff) | |
Add goprecords service deployment for f3s.
Introduce Docker build/push workflow, Helm manifests, and ArgoCD application wiring for goprecords so the cluster can deploy the new daemon API service from the private registry.
Made-with: Cursor
Diffstat (limited to 'f3s/goprecords/docker-image/Justfile')
| -rw-r--r-- | f3s/goprecords/docker-image/Justfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/f3s/goprecords/docker-image/Justfile b/f3s/goprecords/docker-image/Justfile new file mode 100644 index 0000000..046a789 --- /dev/null +++ b/f3s/goprecords/docker-image/Justfile @@ -0,0 +1,13 @@ +REGISTRY := "r0.lan.buetow.org:30001" +IMAGE := "goprecords" +TAG := "0.3.0" +SRC := "/home/paul/git/goprecords" + +build: + docker build -t {{IMAGE}}:{{TAG}} {{SRC}} + +push: + docker tag {{IMAGE}}:{{TAG}} {{REGISTRY}}/{{IMAGE}}:{{TAG}} + docker push {{REGISTRY}}/{{IMAGE}}:{{TAG}} + +all: build push |
