We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0cae6 commit f4a0db4Copy full SHA for f4a0db4
.github/workflows/test.yaml
@@ -0,0 +1,20 @@
1
+name: test docker containerd snapshotter setup
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - test/*
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - run: |
13
+ id -a
14
+ { cat /etc/docker/daemon.json 2>/dev/null || echo '{}'; } | \
15
+ jq '.features += {"containerd-snapshotter": true}' > /tmp/daemon.json
16
+ mv /tmp/daemon.json /etc/docker/daemon.json
17
+ systemctl restart docker
18
+ - run: ./bin/make build-oci OCI_PLATFORM=linux/amd64,linux/arm64
19
+ - run: docker images
20
+ - run: docker inspect foxygoat/flapjak
0 commit comments