diff options
author | Alan Pearce | 2024-04-21 23:18:53 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-21 23:18:53 +0200 |
commit | 25a2b442a220184346e22a31a87c49a449ef636f (patch) | |
tree | 13b083a6e2a0cdefcc1d5383330b1a15c0b64fc2 /justfile | |
parent | fcbad558bc3d573d0cc621e0331d02befd6849d4 (diff) | |
download | website-25a2b442a220184346e22a31a87c49a449ef636f.tar.lz website-25a2b442a220184346e22a31a87c49a449ef636f.tar.zst website-25a2b442a220184346e22a31a87c49a449ef636f.zip |
`just` confusing
Diffstat (limited to 'justfile')
-rwxr-xr-x | justfile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/justfile b/justfile index 627e417..d6c813f 100755 --- a/justfile +++ b/justfile @@ -45,13 +45,11 @@ docker-inspect image-path="result" *skopeo-flags="": print-docker-tag: @echo {{ docker-tag }} -# docker://some_docker_registry/myimage:tag -stream-to-registry registry-and-tag=("docker://" + fly-registry + ":" + docker-tag) *skopeo-flags="": - just docker-stream-fly | gzip --fast | skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive:/dev/stdin {{ registry-and-tag }} +stream-to-registry *skopeo-flags="": + just docker-stream-fly | gzip --fast | skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive:/dev/stdin ("docker://" + fly-registry + ":" + docker-tag) -# docker://some_docker_registry/myimage:tag -push-to-registry registry-and-tag=("docker://" + fly-registry + ":" + docker-tag) image-path=`readlink -f result` *skopeo-flags="": - skopeo {{ skopeo-flags }} copy --dest-precompute-digests {{ image-path }} {{ registry-and-tag }} +push-to-registry *skopeo-flags="": + echo skopeo {{ skopeo-flags }} copy --dest-precompute-digests `readlink -f result` ("docker://" + fly-registry + ":" + docker-tag) deploy registry-and-tag=(fly-registry + ":" + docker-tag): fly deploy --image {{ registry-and-tag }} |