6 lines
185 B
Bash
6 lines
185 B
Bash
echo "Install missing docker-buildx package for out-of-the-box Kamal compatibility"
|
|
|
|
if ! docker buildx version &>/dev/null; then
|
|
sudo pacman -S --noconfirm --needed docker-buildx
|
|
fi
|