mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-16 12:21:53 +00:00
10 lines
241 B
Bash
10 lines
241 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
uid=image-$(date +%s)
|
||
|
|
crane manifest wait.kontain.me/${uid} || true
|
||
|
|
sleep 11 # for good measure
|
||
|
|
time crane validate --remote=wait.kontain.me/${uid}
|
||
|
|
time crane validate --remote=wait.kontain.me/${uid}
|