- Docker and Kubernetes for Java Developers
- Jaroslaw Krochmalski
- 192字
- 2021-07-02 18:44:47
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The Dockerfile is used to create the image when you run the docker build command." A block of code is set as follows:
{
"apiVersion": "v1",
"kind": "Pod",
"metadata":{
"name": ”rest_service”,
"labels": {
"name": "rest_service"
}
},
"spec": {
"containers": [{
"name": "rest_service",
"image": "rest_service",
"ports": [{"containerPort": 8080}],
}]
}
}
Any command-line input or output is written as follows:
docker rm $(docker ps -a -q -f status=exited)
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Skip For Now will take you to the the images list without logging into the Docker Hub."
- C及C++程序設計(第4版)
- Java多線程編程實戰指南:設計模式篇(第2版)
- Spring技術內幕:深入解析Spring架構與設計
- Building Cross-Platform Desktop Applications with Electron
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Microsoft System Center Orchestrator 2012 R2 Essentials
- Hands-On Natural Language Processing with Python
- 利用Python進行數據分析(原書第3版)
- 用戶體驗增長:數字化·智能化·綠色化
- Unreal Engine 4 Shaders and Effects Cookbook
- jQuery Mobile移動應用開發實戰(第3版)
- HTML5+CSS3 Web前端開發技術(第2版)
- UI設計全書(全彩)
- 動手打造深度學習框架
- FFmpeg開發實戰:從零基礎到短視頻上線