SlideShare a Scribd company logo
Philipz(鄭淳尹)
桃園市教育局
容器技術入門與實作研習班
Day2
今日課程
1. Docker Hub 介紹
2. Git 基本操作
3. Docker Hub Auto-build image
4. Docker Network、Docker Volume 指令
5. 單一電腦多容器操作
6. Docker Compose 基本指令
7. Docker Compose 實際操作及使用情境
8. Docker + Qemu 模擬 Raspberry Pi
Raspbian
1. Docker Hub 介紹
Docker Hub = App Store
● 公開 Docker Registry
● 只允許存放一個私有映像檔
● Auto-build & Webhook
● Security Scanning 是付費功能
●
GitHub & Docker Hub
Vulnerability Analysis
CoreOS Clair
Anchore
桃園市教育局Docker技術入門與實作
2. Git 基本操作
Git by Linus Torvalds
● VCS tool
● Open source community protocol
● GitHub, Bitbucket, GitLab…...
Linux 和 Git 都是我搞
出來的!
Install Git
● sudo apt-get install git
● Git cmd for windows
● SourceTree is best choice!
● GitHub is a git web-UI and repository.
● Git 教室
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
3. Docker Hub Auto-build
Dockerfile
範例:
FROM debian:jessie
MAINTAINER docker "docker@nginx.com"
RUN apt-get update && apt-get install -y nginx
CMD ["nginx", "-g", "daemon off;"]
Git 操作流程
1. git init or init on GitHub.
2. git add Dockerfile
3. git commit -m “First init”
4. git remote add origin
https://github.com/YOURNAME/docker_build.git
5. git push origin master
建立 Auto-build Repo.
建置設定
docker pull YOURNAME/IMAGENAME
4.1 Docker Network 指令
TCP/IP Foundation
www.google.com, www 是 hostname,
google.com 是 domain name.
Localhost: 127.0.0.1
TCP/UDP Port: 0-65535 = 2^16,
but 0 是保留不可使用的連接埠
Private IP:
10.0.0.0/8
172.16.0.0/12 ~
172.31.0.0/12
192.168.0.0/16
Network 相關指令
https://docs.docker.com/engine/userguide/networking/
Docker 內建 Network Drivers
● Bridge
● Overlay
● MACVLAN
● Host
● None
不要再使用 “link”, 改用 network.
Docker Reference Architecture: Designing Scalable,
Portable Docker Container Networks
Docker Plug-In Network Drivers
● weave
● calico
Docker Plug-In IPAM Drivers
● infoblox
練習一
$ docker network ls
$ ifconfig
$ docker run -ti --rm busybox sh
cat /etc/hosts, ifconfig
$ docker network inspect bridge
$ docker run -itd --name=container1 busybox
$ docker run -itd --name=container2 busybox
$ docker exec -ti container2 sh
ping -w3 172.17.0.2, ping container1
練習二
$ docker network create vlan_1
$ docker network inspect vlan_1
$ ifconfig | more
$ docker run --network=vlan_1 -itd --name=container3 busybox
$ docker network inspect vlan_1
$ docker run --network=vlan_1 -itd --name=container4 busybox
$ docker exec -ti container4 sh
ping -w3 172.17.0.2, ping container1, ping container3
練習三
$ docker network create wp_db
$ docker pull mysql:5.7
$ docker pull wordpress
$ docker run -d --name db --network=wp_db
-e MYSQL_ROOT_PASSWORD=wordpress
-e MYSQL_DATABASE=wordpress
-e MYSQL_USER=wordpress
-e MYSQL_PASSWORD=wordpress
mysql:5.7
$ docker run -d --name wp -p 80:80 --network=wp_db
-e WORDPRESS_DB_HOST=db:3306
-e WORDPRESS_DB_PASSWORD=wordpress
wordpress
練習四
$ docker network create -d macvlan
--subnet=10.0.0.0/24
--gateway=10.0.0.1
-o parent=eth0 mvnet
$ docker run -itd --name c1 --net mvnet --ip 10.0.0.5 busybox
$ docker run -it --name c2 --net mvnet --ip 10.0.0.6 busybox sh
ping -c 4 10.0.0.5
ip a show eth0, ip route
Get started with Macvlan network driver
4.2 Docker Volume 指令
Shared data volume commands
Manage data in containers
Exercise
$ docker volume create 
--name composewp_db_data
$ docker pull mysql:5.7
$ docker pull wordpress
$ docker run -d --name db --network=wp_db
-e MYSQL_ROOT_PASSWORD=wordpress
-e MYSQL_DATABASE=wordpress
-e MYSQL_USER=wordpress
-e MYSQL_PASSWORD=wordpress
-v composewp_db_data:/var/lib/mysql
mysql:5.7
$ docker run -d --name wp -p 80:80 --network=wp_db
-e WORDPRESS_DB_HOST=db:3306
-e WORDPRESS_DB_PASSWORD=wordpress
wordpress
5. 單一電腦多容器操作
6. Docker Compose
基本指令
安裝 Docker Compose
sudo curl -L
"https://github.com/docker/compose/releases/download/1.9.0/
docker-compose-$(uname -s)-$(uname -m)" -o 
/usr/local/bin/docker-compose
然後
sudo chmod +x /usr/local/bin/docker-compose
docker-compose -v
Docker Compose 指令 (1/2)
Commands:
build Build or rebuild services
bundle Generate a Docker bundle from the Compose file
config Validate and view the compose file
create Create services
down Stop and remove containers, networks, images, and volumes
events Receive real time events from containers
exec Execute a command in a running container
help Get help on a command
kill Kill containers
logs View output from containers
pause Pause services
port Print the public port for a port binding
Docker Compose 指令 (2/2)
Commands:
ps List containers
pull Pull service images
push Push service images
restart Restart services
rm Remove stopped containers
run Run a one-off command
scale Set number of containers for a service
start Start services
stop Stop services
unpause Unpause services
up Create and start containers
version Show the Docker-Compose version information
Compose 檔案說明
一次執行多個容器,建構完整服務
必須是 docker-compose.yml
相同目錄:docker-compose up -d
Docker 會自動建置包含 Dockerfile 的子目錄
支援 Docker Network, Volume
1.13 版本支援 Swarm mode.
Quickstart: Compose and WordPress
Kompose = Kubernetes + Compose
7.1 Docker Compose
實際操作
Compose File Sample (1/2)
version: '2'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
Compose File Sample (1/2)
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
volumes:
db_data:
*** nslookup wordpress ***
Compose & Wordpress
● 水平擴展 wordpress:scale
Microservices Java Worker
Docker Birthday #3 training
Microservices .NET Worker
Docker Birthday #3 training
7.2 Docker Compose
使用情境
Docker Compose & CI/CD
GitHub, CircleCI, Docker Hub = GitLab
Testing level? Coding effort? Env. build-up
effort?
End to End Tests
CI with Docker Compose is easy to implement.
From: Oreilly - Building Microservices
GitLab-Runner
GitLab-Runner
容器開發流程
GitLab-Runner
Test Double 測試方法
新 Compose 測試方法
The Same
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
8. Docker & Qemu &
Raspberry Pi Raspbian
How to build a base image
Cross-compiler
1. Building ARM
containers on
x86 machine
2. Qemu-static-Docker IoT
CI/CD
3. Using GPIO with Docker
RPi & Docker
1. sudo apt-get install
qemu-user-static
2. docker pull philipz/rpi-raspbian
3. docker run -ti -v
/usr/bin/qemu-arm-static:/usr/bin/
qemu-arm-static
philipz/rpi-raspbian bash
4. apt-get update
5. uname -a
QEMU 模擬 ARM 裝置
桃園市教育局Docker技術入門與實作
9. 展示以 Docker 執行
TensorFlow
Docker + TensorFlow + GPU
● Machine Learning, Deep Learning
● TensorFlow Docker images
● nvidia-docker, All-in-one DL image
Deep Learning
10. 課程最後結語
Still No Silver Bullet
容器只是其中一個關鍵,並非全部.
DevOps pipeline 軟體開發流程
Microservices微服務,或其他架構
Infrastructure as Code
Business model
Business
model
Microservices
Infrastructure
as Code
Container
Design
DevOps
*業務系統
微服務架構
Kubernetes
基礎架構
即程式碼
容器式
設計
自動化生產線
Exercise & Self-learning
1. Docker Basic - Katacoda by Philipz
2. Docker Trainning
3. Docker Free self-paced courses
4. Docker Tutorials and Labs
Online Self-learning
Offical Online Lab
Scalable Microservices with Kubernetes
- Udacity
桃園市教育局Docker技術入門與實作
桃園市教育局Docker技術入門與實作
Hope You Love Docker
So long!

More Related Content

PDF
手把手帶你學 Docker 入門篇
Philip Zheng
 
PDF
時代在變 Docker 要會:台北 Docker 一日入門篇
Philip Zheng
 
PDF
Docker 進階實務班
Philip Zheng
 
PDF
容器與資料科學應用
Philip Zheng
 
PDF
Docker研習營
Philip Zheng
 
PDF
容器與IoT端點應用
Philip Zheng
 
PDF
Docker composeで開発環境をメンバに配布せよ
Yusuke Kon
 
PPTX
Container sig#1 ansible-container
Naoya Hashimoto
 
手把手帶你學 Docker 入門篇
Philip Zheng
 
時代在變 Docker 要會:台北 Docker 一日入門篇
Philip Zheng
 
Docker 進階實務班
Philip Zheng
 
容器與資料科學應用
Philip Zheng
 
Docker研習營
Philip Zheng
 
容器與IoT端點應用
Philip Zheng
 
Docker composeで開発環境をメンバに配布せよ
Yusuke Kon
 
Container sig#1 ansible-container
Naoya Hashimoto
 

What's hot (20)

PDF
Docker & GitLab
Philip Zheng
 
PDF
手把手帶你學Docker 03042017
Paul Chao
 
PPTX
Cloud Foundry V2 | Intermediate Deep Dive
Kazuto Kusama
 
PDF
猿でもわかるコンテナ
Tsuyoshi Miyake
 
PDF
Docker1.12イングレスロードバランサ
Yuji Oshima
 
PDF
Using Containers for Continuous Integration and Continuous Delivery
Carlos Sanchez
 
PDF
Docker 初探,實驗室中的運貨鯨
Ruoshi Ling
 
PDF
From dev to prod: Kubernetes on AWS (short ver.)
佑介 九岡
 
PDF
Dockerを利用したローカル環境から本番環境までの構築設計
Koichi Nagaoka
 
PDF
Docker workshop 0507 Taichung
Paul Chao
 
PDF
Production FS: Adapt or die - Claudia Beresford & Tiago Scolar
Paris Container Day
 
PDF
Kubernetes上で動作する機械学習モジュールの配信&管理基盤Rekcurd について
LINE Corporation
 
PDF
大型App面臨的挑戰
Chih-Chung Lee
 
PDF
Using docker to develop NAS applications
Terry Chen
 
PDF
Docker Security: Are Your Containers Tightly Secured to the Ship?
Michael Boelen
 
PDF
Automatically Renew Certificated In Your Kubernetes Cluster
HungWei Chiu
 
PDF
當專案漸趕,當遷移也不再那麼難 (Ship Your Projects with Docker EcoSystem)
Ruoshi Ling
 
PDF
"Yahoo! JAPAN の Kubernetes-as-a-Service" で加速するアプリケーション開発
Yahoo!デベロッパーネットワーク
 
PDF
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
謝 宗穎
 
Docker & GitLab
Philip Zheng
 
手把手帶你學Docker 03042017
Paul Chao
 
Cloud Foundry V2 | Intermediate Deep Dive
Kazuto Kusama
 
猿でもわかるコンテナ
Tsuyoshi Miyake
 
Docker1.12イングレスロードバランサ
Yuji Oshima
 
Using Containers for Continuous Integration and Continuous Delivery
Carlos Sanchez
 
Docker 初探,實驗室中的運貨鯨
Ruoshi Ling
 
From dev to prod: Kubernetes on AWS (short ver.)
佑介 九岡
 
Dockerを利用したローカル環境から本番環境までの構築設計
Koichi Nagaoka
 
Docker workshop 0507 Taichung
Paul Chao
 
Production FS: Adapt or die - Claudia Beresford & Tiago Scolar
Paris Container Day
 
Kubernetes上で動作する機械学習モジュールの配信&管理基盤Rekcurd について
LINE Corporation
 
大型App面臨的挑戰
Chih-Chung Lee
 
Using docker to develop NAS applications
Terry Chen
 
Docker Security: Are Your Containers Tightly Secured to the Ship?
Michael Boelen
 
Automatically Renew Certificated In Your Kubernetes Cluster
HungWei Chiu
 
當專案漸趕,當遷移也不再那麼難 (Ship Your Projects with Docker EcoSystem)
Ruoshi Ling
 
"Yahoo! JAPAN の Kubernetes-as-a-Service" で加速するアプリケーション開発
Yahoo!デベロッパーネットワーク
 
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
謝 宗穎
 
Ad

Viewers also liked (20)

PDF
外資操作剖析,單日期貨空單創歷史新高 2013 04-09
Philip Zheng
 
PDF
程式交易面面觀
Philip Zheng
 
PDF
TradingBot of Maker Faire
Philip Zheng
 
PDF
What's Wrong With Deep Learning?
Philip Zheng
 
PDF
Docker + CI pipeline 的高效率 ChatBot 開發方法
Philip Zheng
 
PDF
程式交易經驗分享系列(1) 程式交易簡介及條件
Philip Zheng
 
PDF
企業導入容器經驗分享與開源技能培養
Philip Zheng
 
PDF
TradingBot & Open Source 精神
Philip Zheng
 
PDF
程式交易經驗分享系列(4) 下單機設定及系列回顧
Philip Zheng
 
PDF
rJava
Philip Zheng
 
PPT
警惕大眾別隨意聽信坊間期貨投顧公司
Philip Zheng
 
PDF
Fusion tables
Philip Zheng
 
PDF
Use MQTT in Docker on Raspberry Pi
Philip Zheng
 
PDF
桃園市教育局Docker技術入門與實作
Philip Zheng
 
PDF
容器式軟體開發介紹
Philip Zheng
 
PDF
Docker all the things
Philip Zheng
 
PDF
Docker on Raspberry Pi and CoreOS
Philip Zheng
 
DOCX
圖解高頻交易系統的運作狀況
Philip Zheng
 
PDF
COSCUP - Fleet
Philip Zheng
 
PDF
程式交易介紹及 FinTech 創作分享
Philip Zheng
 
外資操作剖析,單日期貨空單創歷史新高 2013 04-09
Philip Zheng
 
程式交易面面觀
Philip Zheng
 
TradingBot of Maker Faire
Philip Zheng
 
What's Wrong With Deep Learning?
Philip Zheng
 
Docker + CI pipeline 的高效率 ChatBot 開發方法
Philip Zheng
 
程式交易經驗分享系列(1) 程式交易簡介及條件
Philip Zheng
 
企業導入容器經驗分享與開源技能培養
Philip Zheng
 
TradingBot & Open Source 精神
Philip Zheng
 
程式交易經驗分享系列(4) 下單機設定及系列回顧
Philip Zheng
 
警惕大眾別隨意聽信坊間期貨投顧公司
Philip Zheng
 
Fusion tables
Philip Zheng
 
Use MQTT in Docker on Raspberry Pi
Philip Zheng
 
桃園市教育局Docker技術入門與實作
Philip Zheng
 
容器式軟體開發介紹
Philip Zheng
 
Docker all the things
Philip Zheng
 
Docker on Raspberry Pi and CoreOS
Philip Zheng
 
圖解高頻交易系統的運作狀況
Philip Zheng
 
COSCUP - Fleet
Philip Zheng
 
程式交易介紹及 FinTech 創作分享
Philip Zheng
 
Ad

Similar to 桃園市教育局Docker技術入門與實作 (20)

PDF
廣宣學堂: 容器進階實務 - Docker進深研究班
Paul Chao
 
PPTX
Docker for Web Developers: A Sneak Peek
msyukor
 
PPTX
Running Docker in Development & Production (DevSum 2015)
Ben Hall
 
POTX
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
Swaminathan Vetri
 
PPTX
Running Docker in Development & Production (#ndcoslo 2015)
Ben Hall
 
PPTX
Docker Security workshop slides
Docker, Inc.
 
PDF
Docker Essentials Workshop— Innovation Labs July 2020
CloudHero
 
PDF
Docker as development environment
Bruno de Lima e Silva
 
PDF
Wordpress y Docker, de desarrollo a produccion
Sysdig
 
PDF
Docker, Kubernetes, and Google Cloud
Samuel Chow
 
PDF
Docker for mere mortals
Henryk Konsek
 
PDF
MySQL on Docker - Containerizing the Dolphin
Severalnines
 
PPTX
Develop with docker 2014 aug
Vincent De Smet
 
PPTX
Real World Experience of Running Docker in Development and Production
Ben Hall
 
PPTX
Dockerizing a Symfony2 application
Roman Rodomansky
 
PPTX
Docker orchestration
Open Source Consulting
 
PPTX
Docker orchestration v4
Hojin Kim
 
PDF
Docker & rancher
Alin Voinea
 
PDF
Docker & FieldAware
Jakub Jarosz
 
廣宣學堂: 容器進階實務 - Docker進深研究班
Paul Chao
 
Docker for Web Developers: A Sneak Peek
msyukor
 
Running Docker in Development & Production (DevSum 2015)
Ben Hall
 
Deploying .net core apps to Docker - dotnetConf Local Bengaluru
Swaminathan Vetri
 
Running Docker in Development & Production (#ndcoslo 2015)
Ben Hall
 
Docker Security workshop slides
Docker, Inc.
 
Docker Essentials Workshop— Innovation Labs July 2020
CloudHero
 
Docker as development environment
Bruno de Lima e Silva
 
Wordpress y Docker, de desarrollo a produccion
Sysdig
 
Docker, Kubernetes, and Google Cloud
Samuel Chow
 
Docker for mere mortals
Henryk Konsek
 
MySQL on Docker - Containerizing the Dolphin
Severalnines
 
Develop with docker 2014 aug
Vincent De Smet
 
Real World Experience of Running Docker in Development and Production
Ben Hall
 
Dockerizing a Symfony2 application
Roman Rodomansky
 
Docker orchestration
Open Source Consulting
 
Docker orchestration v4
Hojin Kim
 
Docker & rancher
Alin Voinea
 
Docker & FieldAware
Jakub Jarosz
 

More from Philip Zheng (18)

PDF
AI Coding工具介紹 - 革新程式開發流程的智能助手 by Philipz
Philip Zheng
 
PDF
Solo Leveling with Cursor by Philipz 鄭淳尹
Philip Zheng
 
PDF
十二項架構設計原則
Philip Zheng
 
PDF
從零開始做架構圖
Philip Zheng
 
PDF
VSCode Remote Development 介紹
Philip Zheng
 
PDF
VSCode Remote Development
Philip Zheng
 
PPTX
K8s removes dockershime
Philip Zheng
 
PPTX
Apahce Ignite
Philip Zheng
 
PDF
Cloud Native Practice
Philip Zheng
 
PDF
微服務對IT人員的衝擊
Philip Zheng
 
PDF
Docker容器微服務 x WorkShop
Philip Zheng
 
PDF
容器式高效率 ChatBot 開發方法
Philip Zheng
 
PDF
理財機器人技術簡介與實作經驗分享
Philip Zheng
 
PDF
容器與 Gitlab CI 應用
Philip Zheng
 
PDF
理財機器人技術簡介與實作經驗分享
Philip Zheng
 
PDF
人工智能在量化投资分析中的实践
Philip Zheng
 
PDF
Trading bot演算法與軟工在程式交易上的實踐
Philip Zheng
 
PDF
容器式基礎架構介紹
Philip Zheng
 
AI Coding工具介紹 - 革新程式開發流程的智能助手 by Philipz
Philip Zheng
 
Solo Leveling with Cursor by Philipz 鄭淳尹
Philip Zheng
 
十二項架構設計原則
Philip Zheng
 
從零開始做架構圖
Philip Zheng
 
VSCode Remote Development 介紹
Philip Zheng
 
VSCode Remote Development
Philip Zheng
 
K8s removes dockershime
Philip Zheng
 
Apahce Ignite
Philip Zheng
 
Cloud Native Practice
Philip Zheng
 
微服務對IT人員的衝擊
Philip Zheng
 
Docker容器微服務 x WorkShop
Philip Zheng
 
容器式高效率 ChatBot 開發方法
Philip Zheng
 
理財機器人技術簡介與實作經驗分享
Philip Zheng
 
容器與 Gitlab CI 應用
Philip Zheng
 
理財機器人技術簡介與實作經驗分享
Philip Zheng
 
人工智能在量化投资分析中的实践
Philip Zheng
 
Trading bot演算法與軟工在程式交易上的實踐
Philip Zheng
 
容器式基礎架構介紹
Philip Zheng
 

Recently uploaded (20)

PDF
vAdobe Premiere Pro 2025 (v25.2.3.004) Crack Pre-Activated Latest
imang66g
 
PDF
Summary Of Odoo 18.1 to 18.4 : The Way For Odoo 19
CandidRoot Solutions Private Limited
 
PDF
49784907924775488180_LRN2959_Data_Pump_23ai.pdf
Abilash868456
 
PDF
Protecting the Digital World Cyber Securit
dnthakkar16
 
PPTX
Can You Build Dashboards Using Open Source Visualization Tool.pptx
Varsha Nayak
 
PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
PPTX
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
PDF
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
PDF
Using licensed Data Loss Prevention (DLP) as a strategic proactive data secur...
Q-Advise
 
PPT
Activate_Methodology_Summary presentatio
annapureddyn
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PPTX
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
PDF
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
PDF
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
PDF
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
PPTX
TRAVEL APIs | WHITE LABEL TRAVEL API | TOP TRAVEL APIs
philipnathen82
 
PDF
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
PDF
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
PPTX
AI-Ready Handoff: Auto-Summaries & Draft Emails from MQL to Slack in One Flow
bbedford2
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
vAdobe Premiere Pro 2025 (v25.2.3.004) Crack Pre-Activated Latest
imang66g
 
Summary Of Odoo 18.1 to 18.4 : The Way For Odoo 19
CandidRoot Solutions Private Limited
 
49784907924775488180_LRN2959_Data_Pump_23ai.pdf
Abilash868456
 
Protecting the Digital World Cyber Securit
dnthakkar16
 
Can You Build Dashboards Using Open Source Visualization Tool.pptx
Varsha Nayak
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
Using licensed Data Loss Prevention (DLP) as a strategic proactive data secur...
Q-Advise
 
Activate_Methodology_Summary presentatio
annapureddyn
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
TRAVEL APIs | WHITE LABEL TRAVEL API | TOP TRAVEL APIs
philipnathen82
 
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
AI-Ready Handoff: Auto-Summaries & Draft Emails from MQL to Slack in One Flow
bbedford2
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 

桃園市教育局Docker技術入門與實作