init
This commit is contained in:
2
image/Dockerfile
Normal file
2
image/Dockerfile
Normal file
@@ -0,0 +1,2 @@
|
||||
FROM nginx:1.25-alpine
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
||||
1
image/VERSION
Normal file
1
image/VERSION
Normal file
@@ -0,0 +1 @@
|
||||
0.1.0
|
||||
9
image/nginx.conf
Normal file
9
image/nginx.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
events {}
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
location / {
|
||||
return 200 'Hello from custom nginx!';
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user