การติดตั้ง Docker บน Rocky Linux
1. พิมพ์คำสั่ง
dnf install docker -y

2. เพิ่ม Docker Repository บน Rocky Linux
dnf config-manager –add-repo=https://download.docker.com/linux/centos/docker-ce.repo

3. ติดตั้ง Docker
dnf update
dnf -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin

4. ตรวจสอบเวอร์ชั่นของ Docker
[root@agriserv ~]# docker –version
Docker version 23.0.1, build a5ee5b1

5. ทำการสต๊าทและเปิดใช้งาน Docker
systemctl enable –now docker
systemctl start docker
systemctl status docker

6. เพิ่มผู้ใช้งาน (Add User to Docker Group)
[root@agriserv ~]# sudo usermod -aG docker $USER
[root@agriserv ~]# newgrp docker
[root@agriserv ~]# id $USER
uid=0(root) gid=0(root) groups=0(root),990(docker)

7. ตรวจสอบเวอร์ชั่นของ Docker
[root@agriserv ~]# docker version

8. ทดสอบ

[root@agriserv ~]# docker run hello-world
Unable to find image ‘hello-world:latest’ locally
latest: Pulling from library/hello-world
2db29710123e: Pull complete
Digest: sha256:6e8b6f026e0b9c419ea0fd02d3905dd0952ad1feea67543f525c73a0a790fefb
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

9. ทำการดึงตัวติดตั้ง ubuntu (Pull Ubuntu Docker Image)
[root@agriserv ~]# docker pull ubuntu
Using default tag: latest
latest: Pulling from library/ubuntu
677076032cca: Pull complete
Digest: sha256:9a0bdde4188b896a372804be2384015e90e3f84906b750c1a53539b585fbbe7f
Status: Downloaded newer image for ubuntu:latest
docker.io/library/ubuntu:latest

10. ตรวจสอบ docker images
[root@agriserv ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu latest 58db3edaf2be 3 weeks ago 77.8MB
hello-world latest feb5d9fea6a5 17 months ago 13.3kB

11. รัน Run Ubuntu Docker Container
docker run -it ชื่ออิมเมจไฟล์
เช่น
[root@agriserv ~]# docker run -it ubuntu
root@ddea85338b9c:/# cat /etc/os-release
PRETTY_NAME=”Ubuntu 22.04.1 LTS”
NAME=”Ubuntu”
VERSION_ID=”22.04″
VERSION=”22.04.1 LTS (Jammy Jellyfish)”
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL=”https://www.ubuntu.com/”
SUPPORT_URL=”https://help.ubuntu.com/”
BUG_REPORT_URL=”https://bugs.launchpad.net/ubuntu/”
PRIVACY_POLICY_URL=”https://www.ubuntu.com/legal/terms-and-policies/privacy-policy”
UBUNTU_CODENAME=jammy

10.  พิมพ์ exit เพื่อออกจาก Docker


Tips
ค้นหา Docker image บน rocky (Search and Pull Docker Images on Rocky Linux)
docker search rockylinux
docker search centos
docker search ubuntu
docker search debian
docker search kali
docker search raspbian
docker search windows

ดึงตัวติดตั้ง (image file)
$ docker pull <image-name> # Using default tag

เช่น
docker pull dokken/rockylinux-8
docker pull dokken/rockylinux-9
docker pull  ubuntu/apache2
docker pull  ubuntu/grafana
docker pull  ubuntu/mysql
docker pull ubuntu/cassandra
docker pull dokken/debian-8
docker pull dokken/debian-11
docker pull osrf/debian_arm64

หรือกรณีต้องการอ้างอิงเลขเวอร์ชั่น
$ docker pull <image-name>:<tag-name>
docker pull rockylinux/rockylinux:9

ตรวจสอบ images file docker
[root@agriserv ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
rockylinux/rockylinux 9 7e9c2eed05f1 44 hours ago 176MB
ubuntu latest 58db3edaf2be 3 weeks ago 77.8MB
hello-world latest feb5d9fea6a5 17 months ago 13.3kB



Write by SysAdmin Knowledge
https://www.sysadmin.in.th
January 10, 2023


 

Explore More

ห้องเก็บข้อมูลต่างๆ ของระบบ Linux

โครงสร้างไดเร็กทอรีในระบบปฏิบัติการ Linux โดยมีไดเร็กทอรีหลักที่ใช้เก็บไฟล์ระบบและไฟล์ที่เกี่ยวข้องกับผู้ใช้ ดังนี้ / (Root directory): ไดเร็กทอรีหลักที่อยู่ในระดับบนสุดของโครงสร้างไดเร็กทอรี /bin: เก็บไฟล์ไบนารีของคำสั่งพื้นฐานที่สามารถใช้ได้โดยผู้ใช้ทุกคน เช่น ls, cp, mv /boot: เก็บไฟล์ที่เกี่ยวข้องกับการบู๊ตระบบ เช่น เคอร์เนลและไฟล์ boot loader /dev: เก็บไฟล์ device ที่เป็นตัวแทนของอุปกรณ์ต่าง ๆ ในระบบ เช่น /dev/sda /etc: เก็บไฟล์การตั้งค่าระบบและสคริปต์การเริ่มต้นใช้งาน […]

ลิงค์ดาวน์โหลด Linux จาก Mirror site ต่างๆ

ลิงค์ดาวน์โหลด Linux จาก Mirror site ต่างๆ https://mirror.kku.ac.th http://mirror1.ku.ac.th https://mirror.ku.ac.th http://mirrors.psu.ac.th http://mirror1.totbb.net http://mirrors.bangmod.cloud https://mirrors.nipa.cloud https://launchpad.net/ubuntu/+archivemirrors — Write by SysAdmin Knowledge https://www.sysadmin.in.th January 15, 2023  

การอัปเดทและอัปเกรด Rocky Linux

การอัปเดทและอัปเกรด Rocky Linux dnf update dnf upgrade หรือ กรณีอัปเดทไม่ได้ให้สั่งดังนี้ dnf update –nobest dnf upgrade –nobest dnf update –allowerasing — Write by SysAdmin Knowledge https://www.sysadmin.in.th January 14, 2023