Member-only story
Install Docker on Raspberry Pi
สำหรับในบทความนี้ จะเป็นการติดตั้ง Docker เพื่อใช้งานบน Raspberry Pi แบบง่ายๆ แบบทันใจกันครับ
This article will be an easy and quick guide on installing Docker to use it on a Raspberry Pi.
เริ่มต้นให้ทำการ Update, Upgrade และ Remove packages ของ OS ด้วยคำสั่ง
Begin to perform updates, upgrades, and removals of operating system packages using commands.
sudo apt update && sudo apt full-upgrade -y && sudo apt autoremove -y && sudo apt clean
จากนั้นให้เราทำการติดตั้ง Package uidmap เพื่อใช้สำหรับการตั้งค่าของ Docker กันก่อน โดยใช้คำสั่ง
From then on, let's install the Package uidmap for our Docker settings together, using this command.
sudo apt install -y uidmap
หลังจากติดตั้ง packages ที่จำเป็นเรียบร้อยแล้ว ขั้นตอนต่อไปจะเป็นการติดตั้ง Docker กัน โดยใช้คำสั่ง
After installing the necessary packages successfully, the next step will be to install Docker by…