From 69635e8fe695d350a29ddf80b3ffa3dace89aed0 Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Tue, 21 Oct 2025 21:45:50 +0200 Subject: [PATCH] test --- docker-compose.yaml | 9 +++++++++ html/index.html | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 docker-compose.yaml create mode 100644 html/index.html diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..17d66ae --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,9 @@ +version: "3.9" +services: + web: + image: nginx:alpine + container_name: hello-world + ports: + - "80" + volumes: + - ./html:/usr/share/nginx/html:ro diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..e6b1527 --- /dev/null +++ b/html/index.html @@ -0,0 +1,11 @@ + + + + + Hello World + + +

Hello, World! 👋

+ + +