新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
FROM nginx:1.21-alpine
|
||||
COPY *.html /usr/share/nginx/html/
|
||||
COPY *.txt /usr/share/nginx/html/
|
||||
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>v1</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #a8ebff;
|
||||
font-family: "Lucida Console", Courier, monospace;
|
||||
}
|
||||
h1 {
|
||||
font-weight: 800;
|
||||
font-size: 80px;
|
||||
color: #020c66;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>v1</h1>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
v1
|
||||
@@ -0,0 +1,3 @@
|
||||
FROM nginx:1.21-alpine
|
||||
COPY *.html /usr/share/nginx/html/
|
||||
COPY *.txt /usr/share/nginx/html/
|
||||
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>v2</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #b3ffe6;
|
||||
font-family: "Times New Roman", Times, serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 90px;
|
||||
color: #02422d;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>v2</h1>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
v2
|
||||
@@ -0,0 +1,3 @@
|
||||
FROM alpine:3.15
|
||||
|
||||
CMD this-will-fail
|
||||
Reference in New Issue
Block a user