This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!bin/bash | |
# install samba | |
sudo apt -qq update && sudo apt -qq install -y samba | |
sudo systemctl enable --now smbd nmbd | |
# create samba share directory | |
mkdir -p /home/pi/samba | |
# create samba user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker buildx create --driver-opt image=moby/buildkit:latest --name multi-arch-builder --use | |
docker buildx inspect --bootstrap |