From 47f6556b469b38458515745b517a3c02a4220c50 Mon Sep 17 00:00:00 2001 From: Luca Conte Date: Thu, 6 Mar 2025 14:52:00 +0100 Subject: [PATCH] add some basic initialisation --- docker-compose.yml | 7 +++++++ src/index.html | 12 ++++++++++++ src/script.js | 0 3 files changed, 19 insertions(+) create mode 100644 docker-compose.yml create mode 100644 src/index.html create mode 100644 src/script.js diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..38684ad --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + cg1: + image: nginx:alpine + volumes: + - ./src:/usr/share/nginx/html:ro + ports: + - "8080:80" \ No newline at end of file diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..3019e36 --- /dev/null +++ b/src/index.html @@ -0,0 +1,12 @@ + + + + + + CG1 MDI + + + + + + \ No newline at end of file diff --git a/src/script.js b/src/script.js new file mode 100644 index 0000000..e69de29