Skip to content

Commit

Permalink
Enable containerd-snapshotter for multi-platform image support
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr committed Nov 23, 2023
1 parent b9a9592 commit 3b322e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable containerd
run: |
cat /etc/docker/daemon.json | jq '. + {"experimental": "enabled", "features": {"containerd-snapshotter": true}}' > daemon.json.new
sudo cp daemon.json.new /etc/docker/daemon.json
sudo systemctl restart docker.service || systemctl status docker.service && journalctl -xeu docker.service && false
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down

0 comments on commit 3b322e7

Please sign in to comment.