File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -170,10 +170,11 @@ if [[ -n ${CHECKS["containerd-user"]} ]]; then
170
170
mkdir -p " $hometmp "
171
171
defer " rm -rf \" $hometmp \" "
172
172
set -x
173
- limactl shell " $NAME " nerdctl pull alpine
173
+ alpine_image=" ghcr.io/containerd/alpine:3.14.0"
174
+ limactl shell " $NAME " nerdctl pull ${alpine_image}
174
175
echo " random-content-${RANDOM} " > " $hometmp /random"
175
176
expected=" $( cat " $hometmp /random" ) "
176
- got=" $( limactl shell " $NAME " nerdctl run --rm -v " $hometmp /random" :/mnt/foo alpine cat /mnt/foo) "
177
+ got=" $( limactl shell " $NAME " nerdctl run --rm -v " $hometmp /random" :/mnt/foo ${alpine_image} cat /mnt/foo) "
177
178
INFO " $hometmp /random: expected=${expected} , got=${got} "
178
179
if [ " $got " != " $expected " ]; then
179
180
ERROR " Home directory is not shared?"
You can’t perform that action at this time.
0 commit comments