This repository has been archived on 2025-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
GreenCoast/scripts/setup_buildx.sh
2025-08-21 20:56:38 -04:00

7 lines
207 B
Bash

#!/usr/bin/env bash
set -euo pipefail
docker buildx create --name greencoast --use || true
docker run --privileged --rm tonistiigi/binfmt --install all
docker buildx inspect --bootstrap
echo "Buildx ready."