We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d12058 commit 7f786d3Copy full SHA for 7f786d3
nerdctl.yaml
@@ -34,8 +34,27 @@ update:
34
strip-prefix: v
35
36
test:
37
+ environment:
38
+ contents:
39
+ packages:
40
+ - containerd
41
+ - iptables
42
+ - curl
43
+ - coreutils
44
pipeline:
- # AUTOGENERATED
- - runs: |
- nerdctl --version
- nerdctl --help
45
+ - name: "Configure and start containerd"
46
+ runs: |
47
+ mkdir -p /etc/containerd
48
+ cat > /etc/containerd/config.toml << EOF
49
+ version = 2
50
+ [plugins."io.containerd.grpc.v1.cri"]
51
+ snapshotter = ""
52
+ EOF
53
+
54
+ containerd &
55
+ sleep 5 # Give containerd time to start
56
57
+ nerdctl info
58
59
+ # don't unpack, we're using a fake containerd
60
+ nerdctl pull --unpack=false cgr.dev/chainguard/wolfi-base:latest
0 commit comments