- 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."
- 極簡算法史:從數(shù)學(xué)到機(jī)器的故事
- 嵌入式軟件系統(tǒng)測試:基于形式化方法的自動化測試解決方案
- Mastering Adobe Captivate 2017(Fourth Edition)
- Java Web應(yīng)用開發(fā)技術(shù)與案例教程(第2版)
- C語言從入門到精通(第4版)
- Java Web開發(fā)技術(shù)教程
- Spring Boot Cookbook
- D3.js 4.x Data Visualization(Third Edition)
- 基于ARM Cortex-M4F內(nèi)核的MSP432 MCU開發(fā)實(shí)踐
- WildFly Cookbook
- 多媒體技術(shù)及應(yīng)用
- Oracle Database XE 11gR2 Jump Start Guide
- Learning Redux
- PHP程序設(shè)計(jì)高級教程
- Practical Linux Security Cookbook