- 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."
- Go Web編程
- iOS 9 Game Development Essentials
- Learning Elixir
- Python Network Programming Cookbook(Second Edition)
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- The HTML and CSS Workshop
- Python機器學習算法與實戰
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- Mastering React
- Java高并發核心編程(卷1):NIO、Netty、Redis、ZooKeeper
- Distributed Computing in Java 9
- Mastering Drupal 8
- Java面向對象程序設計教程
- Pandas 1.x Cookbook
- Real-time Web Application Development using Vert.x 2.0