diff options
Diffstat (limited to 'f3s/goprecords/docker-image')
| -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 |
